2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
2021-08-08 14:49:13 +00:00
|
|
|
use clippy_utils::higher;
|
2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::method_chain_args;
|
|
|
|
use clippy_utils::source::snippet_with_applicability;
|
|
|
|
use clippy_utils::ty::is_type_diagnostic_item;
|
2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2020-01-09 23:34:13 +00:00
|
|
|
use rustc_errors::Applicability;
|
2021-08-08 14:49:13 +00:00
|
|
|
use rustc_hir::{Expr, ExprKind, PatKind, QPath};
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-11-05 13:29:48 +00:00
|
|
|
use rustc_span::sym;
|
2016-10-02 20:48:52 +00:00
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
2021-09-28 17:03:12 +00:00
|
|
|
/// Checks for unnecessary `ok()` in `while let`.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
2021-09-28 17:03:12 +00:00
|
|
|
/// Calling `ok()` in `while let` is unnecessary, instead match
|
2019-03-05 16:50:33 +00:00
|
|
|
/// on `Ok(pat)`
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-03-05 22:23:50 +00:00
|
|
|
/// ```ignore
|
2021-09-28 17:03:12 +00:00
|
|
|
/// while let Some(value) = iter.next().ok() {
|
|
|
|
/// vec.push(value)
|
2019-03-05 16:50:33 +00:00
|
|
|
/// }
|
|
|
|
///
|
2022-04-15 18:25:55 +00:00
|
|
|
/// if let Some(value) = iter.next().ok() {
|
2021-09-28 17:03:12 +00:00
|
|
|
/// vec.push(value)
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
/// Use instead:
|
2019-03-05 22:23:50 +00:00
|
|
|
/// ```ignore
|
2021-09-28 17:03:12 +00:00
|
|
|
/// while let Ok(value) = iter.next() {
|
|
|
|
/// vec.push(value)
|
|
|
|
/// }
|
|
|
|
///
|
|
|
|
/// if let Ok(value) = iter.next() {
|
2021-10-21 11:11:36 +00:00
|
|
|
/// vec.push(value)
|
2019-03-05 16:50:33 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "1.57.0"]
|
2021-09-28 17:03:12 +00:00
|
|
|
pub MATCH_RESULT_OK,
|
2018-03-28 13:24:26 +00:00
|
|
|
style,
|
2021-09-28 17:03:12 +00:00
|
|
|
"usage of `ok()` in `let Some(pat)` statements is unnecessary, match on `Ok(pat)` instead"
|
2016-10-02 20:48:52 +00:00
|
|
|
}
|
|
|
|
|
2021-09-28 17:03:12 +00:00
|
|
|
declare_lint_pass!(MatchResultOk => [MATCH_RESULT_OK]);
|
2016-10-02 20:48:52 +00:00
|
|
|
|
2021-09-28 17:03:12 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for MatchResultOk {
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2021-09-28 17:03:12 +00:00
|
|
|
let (let_pat, let_expr, ifwhile) =
|
|
|
|
if let Some(higher::IfLet { let_pat, let_expr, .. }) = higher::IfLet::hir(cx, expr) {
|
|
|
|
(let_pat, let_expr, "if")
|
|
|
|
} else if let Some(higher::WhileLet { let_pat, let_expr, .. }) = higher::WhileLet::hir(expr) {
|
|
|
|
(let_pat, let_expr, "while")
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
|
|
|
if_chain! {
|
2021-12-01 17:17:50 +00:00
|
|
|
if let ExprKind::MethodCall(ok_path, [ref result_types_0, ..], _) = let_expr.kind; //check is expr.ok() has type Result<T,E>.ok(, _)
|
2021-09-08 14:31:47 +00:00
|
|
|
if let PatKind::TupleStruct(QPath::Resolved(_, x), y, _) = let_pat.kind; //get operation
|
2022-04-15 18:25:55 +00:00
|
|
|
if method_chain_args(let_expr, &["ok"]).is_some(); //test to see if using ok() method use std::marker::Sized;
|
2021-10-02 23:51:01 +00:00
|
|
|
if is_type_diagnostic_item(cx, cx.typeck_results().expr_ty(result_types_0), sym::Result);
|
2020-04-12 13:23:07 +00:00
|
|
|
if rustc_hir_pretty::to_string(rustc_hir_pretty::NO_ANN, |s| s.print_path(x, false)) == "Some";
|
2017-11-04 19:55:56 +00:00
|
|
|
|
2017-10-23 19:18:02 +00:00
|
|
|
then {
|
2021-09-28 17:03:12 +00:00
|
|
|
|
2020-01-09 23:34:13 +00:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
let some_expr_string = snippet_with_applicability(cx, y[0].span, "", &mut applicability);
|
2021-12-01 17:17:50 +00:00
|
|
|
let trimmed_ok = snippet_with_applicability(cx, let_expr.span.until(ok_path.ident.span), "", &mut applicability);
|
2020-01-10 19:34:01 +00:00
|
|
|
let sugg = format!(
|
2021-09-28 17:03:12 +00:00
|
|
|
"{} let Ok({}) = {}",
|
|
|
|
ifwhile,
|
2020-01-09 23:34:13 +00:00
|
|
|
some_expr_string,
|
2020-01-19 01:00:34 +00:00
|
|
|
trimmed_ok.trim().trim_end_matches('.'),
|
2020-01-09 23:34:13 +00:00
|
|
|
);
|
2020-01-19 12:14:47 +00:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
2021-09-28 17:03:12 +00:00
|
|
|
MATCH_RESULT_OK,
|
2021-08-08 14:49:13 +00:00
|
|
|
expr.span.with_hi(let_expr.span.hi()),
|
2020-08-28 14:10:16 +00:00
|
|
|
"matching on `Some` with `ok()` is redundant",
|
|
|
|
&format!("consider matching on `Ok({})` and removing the call to `ok` instead", some_expr_string),
|
2020-01-19 12:14:47 +00:00
|
|
|
sugg,
|
|
|
|
applicability,
|
|
|
|
);
|
2016-10-02 20:48:52 +00:00
|
|
|
}
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
2016-10-02 20:48:52 +00:00
|
|
|
}
|
|
|
|
}
|