-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af1f78a
commit ef3cb7d
Showing
7 changed files
with
429 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
use clippy_utils::diagnostics::span_lint_and_sugg; | ||
use clippy_utils::sugg::Sugg; | ||
use clippy_utils::{is_res_lang_ctor, path_res, peel_blocks, span_contains_comment}; | ||
use rustc_ast::BindingMode; | ||
use rustc_errors::Applicability; | ||
use rustc_hir::LangItem::{OptionNone, OptionSome}; | ||
use rustc_hir::def::{DefKind, Res}; | ||
use rustc_hir::{Arm, Expr, ExprKind, Pat, PatKind, Path, QPath}; | ||
use rustc_lint::{LateContext, LintContext}; | ||
use rustc_span::symbol::Ident; | ||
|
||
use super::MANUAL_OK_ERR; | ||
|
||
pub(crate) fn check_if_let( | ||
cx: &LateContext<'_>, | ||
expr: &Expr<'_>, | ||
let_pat: &Pat<'_>, | ||
let_expr: &Expr<'_>, | ||
if_then: &Expr<'_>, | ||
else_expr: &Expr<'_>, | ||
) { | ||
if let Some((is_ok, ident)) = is_ok_or_err(cx, let_pat) | ||
&& is_some_ident(cx, if_then, ident) | ||
&& is_none(cx, else_expr) | ||
{ | ||
apply_lint(cx, expr, let_expr, is_ok); | ||
} | ||
} | ||
|
||
pub(crate) fn check_match(cx: &LateContext<'_>, expr: &Expr<'_>, scrutinee: &Expr<'_>, arms: &[Arm<'_>]) { | ||
if arms.len() == 2 | ||
&& arms.iter().all(|arm| arm.guard.is_none()) | ||
&& let Some((idx, is_ok)) = arms.iter().enumerate().find_map(|(arm_idx, arm)| { | ||
if let Some((is_ok, ident)) = is_ok_or_err(cx, arm.pat) | ||
&& is_some_ident(cx, arm.body, ident) | ||
{ | ||
Some((arm_idx, is_ok)) | ||
} else { | ||
None | ||
} | ||
}) | ||
// Accept wildcard only as the second arm | ||
&& is_variant_or_wildcard(arms[1-idx].pat, idx == 0) | ||
&& is_none(cx, arms[1 - idx].body) | ||
{ | ||
apply_lint(cx, expr, scrutinee, is_ok); | ||
} | ||
} | ||
|
||
/// Check that `pat` applied to a `Result` only matches `Ok(_)`, `Err(_)`, not a subset or a | ||
/// superset of it. If `can_be_wild` is `true`, wildcards are also accepted. | ||
fn is_variant_or_wildcard(pat: &Pat<'_>, can_be_wild: bool) -> bool { | ||
match pat.kind { | ||
PatKind::Wild | PatKind::Path(..) if can_be_wild => true, | ||
PatKind::TupleStruct(..) | PatKind::Struct(..) | PatKind::Binding(_, _, _, None) => true, | ||
PatKind::Binding(_, _, _, Some(pat)) | PatKind::Ref(pat, _) => is_variant_or_wildcard(pat, can_be_wild), | ||
_ => false, | ||
} | ||
} | ||
|
||
/// Return `Some((true, IDENT))` if `pat` contains `Ok(IDENT)`, `Some((false, IDENT))` if it | ||
/// contains `Err(IDENT)`, `None` otherwise. | ||
fn is_ok_or_err<'hir>(cx: &LateContext<'_>, pat: &Pat<'hir>) -> Option<(bool, &'hir Ident)> { | ||
if let PatKind::TupleStruct(qpath, [arg], _) = &pat.kind | ||
&& let PatKind::Binding(BindingMode::NONE, _, ident, _) = &arg.kind | ||
&& let res = cx.qpath_res(qpath, pat.hir_id) | ||
&& let Res::Def(DefKind::Ctor(..), id) = res | ||
&& let id @ Some(_) = cx.tcx.opt_parent(id) | ||
{ | ||
let lang_items = cx.tcx.lang_items(); | ||
if id == lang_items.result_ok_variant() { | ||
return Some((true, ident)); | ||
} else if id == lang_items.result_err_variant() { | ||
return Some((false, ident)); | ||
} | ||
} | ||
None | ||
} | ||
|
||
/// Check if `expr` contains `Some(ident)`, possibly as a block | ||
fn is_some_ident(cx: &LateContext<'_>, expr: &Expr<'_>, ident: &Ident) -> bool { | ||
if let ExprKind::Call(body_callee, [body_arg]) = peel_blocks(expr).kind | ||
&& is_res_lang_ctor(cx, path_res(cx, body_callee), OptionSome) | ||
&& let ExprKind::Path(QPath::Resolved( | ||
_, | ||
Path { | ||
segments: [segment], .. | ||
}, | ||
)) = body_arg.kind | ||
{ | ||
segment.ident.name == ident.name | ||
} else { | ||
false | ||
} | ||
} | ||
|
||
/// Check if `expr` is `None`, possibly as a block | ||
fn is_none(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool { | ||
is_res_lang_ctor(cx, path_res(cx, peel_blocks(expr)), OptionNone) | ||
} | ||
|
||
/// Suggest replacing `expr` by `scrutinee.METHOD()`, where `METHOD` is either `ok` or | ||
/// `err`, depending on `is_ok`. | ||
fn apply_lint(cx: &LateContext<'_>, expr: &Expr<'_>, scrutinee: &Expr<'_>, is_ok: bool) { | ||
let method = if is_ok { "ok" } else { "err" }; | ||
let mut app = if span_contains_comment(cx.sess().source_map(), expr.span) { | ||
Applicability::MaybeIncorrect | ||
} else { | ||
Applicability::MachineApplicable | ||
}; | ||
let scrut = Sugg::hir_with_applicability(cx, scrutinee, "..", &mut app).maybe_par(); | ||
span_lint_and_sugg( | ||
cx, | ||
MANUAL_OK_ERR, | ||
expr.span, | ||
format!("manual implementation of `{method}`"), | ||
"replace with", | ||
format!("{scrut}.{method}()"), | ||
app, | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
#![warn(clippy::manual_ok_err)] | ||
|
||
fn funcall() -> Result<u32, &'static str> { | ||
todo!() | ||
} | ||
|
||
fn main() { | ||
let _ = funcall().ok(); | ||
|
||
let _ = funcall().ok(); | ||
|
||
let _ = funcall().err(); | ||
|
||
let _ = funcall().err(); | ||
|
||
let _ = funcall().ok(); | ||
|
||
let _ = funcall().err(); | ||
|
||
#[allow(clippy::redundant_pattern)] | ||
let _ = funcall().ok(); | ||
|
||
struct S; | ||
|
||
impl std::ops::Neg for S { | ||
type Output = Result<u32, &'static str>; | ||
|
||
fn neg(self) -> Self::Output { | ||
funcall() | ||
} | ||
} | ||
|
||
// Suggestion should be properly parenthesized | ||
let _ = (-S).ok(); | ||
|
||
no_lint(); | ||
} | ||
|
||
fn no_lint() { | ||
let _ = match funcall() { | ||
Ok(v) if v > 3 => Some(v), | ||
_ => None, | ||
}; | ||
|
||
let _ = match funcall() { | ||
Err(_) => None, | ||
Ok(3) => None, | ||
Ok(v) => Some(v), | ||
}; | ||
|
||
let _ = match funcall() { | ||
_ => None, | ||
Ok(v) => Some(v), | ||
}; | ||
|
||
let _ = match funcall() { | ||
Err(_) | Ok(3) => None, | ||
Ok(v) => Some(v), | ||
}; | ||
|
||
#[expect(clippy::redundant_pattern)] | ||
let _ = match funcall() { | ||
_v @ _ => None, | ||
Ok(v) => Some(v), | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
#![warn(clippy::manual_ok_err)] | ||
|
||
fn funcall() -> Result<u32, &'static str> { | ||
todo!() | ||
} | ||
|
||
fn main() { | ||
let _ = match funcall() { | ||
//~^ manual_ok_err | ||
Ok(v) => Some(v), | ||
Err(_) => None, | ||
}; | ||
|
||
let _ = match funcall() { | ||
//~^ manual_ok_err | ||
Ok(v) => Some(v), | ||
_v => None, | ||
}; | ||
|
||
let _ = match funcall() { | ||
//~^ manual_ok_err | ||
Err(v) => Some(v), | ||
Ok(_) => None, | ||
}; | ||
|
||
let _ = match funcall() { | ||
//~^ manual_ok_err | ||
Err(v) => Some(v), | ||
_v => None, | ||
}; | ||
|
||
let _ = if let Ok(v) = funcall() { | ||
//~^ manual_ok_err | ||
Some(v) | ||
} else { | ||
None | ||
}; | ||
|
||
let _ = if let Err(v) = funcall() { | ||
//~^ manual_ok_err | ||
Some(v) | ||
} else { | ||
None | ||
}; | ||
|
||
#[allow(clippy::redundant_pattern)] | ||
let _ = match funcall() { | ||
//~^ manual_ok_err | ||
Ok(v) => Some(v), | ||
_v @ _ => None, | ||
}; | ||
|
||
struct S; | ||
|
||
impl std::ops::Neg for S { | ||
type Output = Result<u32, &'static str>; | ||
|
||
fn neg(self) -> Self::Output { | ||
funcall() | ||
} | ||
} | ||
|
||
// Suggestion should be properly parenthesized | ||
let _ = match -S { | ||
//~^ manual_ok_err | ||
Ok(v) => Some(v), | ||
_ => None, | ||
}; | ||
|
||
no_lint(); | ||
} | ||
|
||
fn no_lint() { | ||
let _ = match funcall() { | ||
Ok(v) if v > 3 => Some(v), | ||
_ => None, | ||
}; | ||
|
||
let _ = match funcall() { | ||
Err(_) => None, | ||
Ok(3) => None, | ||
Ok(v) => Some(v), | ||
}; | ||
|
||
let _ = match funcall() { | ||
_ => None, | ||
Ok(v) => Some(v), | ||
}; | ||
|
||
let _ = match funcall() { | ||
Err(_) | Ok(3) => None, | ||
Ok(v) => Some(v), | ||
}; | ||
|
||
#[expect(clippy::redundant_pattern)] | ||
let _ = match funcall() { | ||
_v @ _ => None, | ||
Ok(v) => Some(v), | ||
}; | ||
} |
Oops, something went wrong.