rust/clippy_lints/src/if_let_some_result.rs

80 lines
3.3 KiB
Rust
Raw Normal View History

2020-01-09 17:34:13 -06:00
use crate::utils::{match_type, method_chain_args, paths, snippet, snippet_with_applicability, span_lint_and_sugg};
2018-11-27 14:14:15 -06:00
use if_chain::if_chain;
2020-01-09 17:34:13 -06:00
use rustc_errors::Applicability;
2020-01-06 10:39:50 -06:00
use rustc_hir::*;
2020-01-12 00:08:41 -06:00
use rustc_lint::{LateContext, LateLintPass};
2020-01-11 05:37:08 -06:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
2020-01-10 12:05:10 -06:00
use rustc_span::BytePos;
2016-10-02 15:48:52 -05:00
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **What it does:*** Checks for unnecessary `ok()` in if let.
///
/// **Why is this bad?** Calling `ok()` in if let is unnecessary, instead match
/// on `Ok(pat)`
///
/// **Known problems:** None.
///
/// **Example:**
2019-03-05 16:23:50 -06:00
/// ```ignore
/// for i in iter {
/// if let Some(value) = i.parse().ok() {
/// vec.push(value)
/// }
/// }
/// ```
/// Could be written:
///
2019-03-05 16:23:50 -06:00
/// ```ignore
/// for i in iter {
/// if let Ok(value) = i.parse() {
/// vec.push(value)
/// }
/// }
/// ```
2016-10-02 15:48:52 -05:00
pub IF_LET_SOME_RESULT,
2018-03-28 08:24:26 -05:00
style,
2016-10-02 16:15:24 -05:00
"usage of `ok()` in `if let Some(pat)` statements is unnecessary, match on `Ok(pat)` instead"
2016-10-02 15:48:52 -05:00
}
2019-04-08 15:43:55 -05:00
declare_lint_pass!(OkIfLet => [IF_LET_SOME_RESULT]);
2016-10-02 15:48:52 -05:00
2019-04-08 15:43:55 -05:00
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for OkIfLet {
2019-12-27 01:12:26 -06:00
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) {
if_chain! { //begin checking variables
2020-01-10 12:05:10 -06:00
if let ExprKind::Match(ref op, ref body, source) = expr.kind; //test if expr is a match
if let MatchSource::IfLetDesugar { contains_else_clause } = source; //test if it is an If Let
2020-01-09 17:34:13 -06:00
if let ExprKind::MethodCall(_, ok_span, ref result_types) = op.kind; //check is expr.ok() has type Result<T,E>.ok()
2019-09-27 10:16:06 -05:00
if let PatKind::TupleStruct(QPath::Resolved(_, ref x), ref y, _) = body[0].pat.kind; //get operation
2019-05-17 16:53:54 -05:00
if method_chain_args(op, &["ok"]).is_some(); //test to see if using ok() methoduse std::marker::Sized;
2017-11-04 14:55:56 -05:00
then {
2019-05-17 16:53:54 -05:00
let is_result_type = match_type(cx, cx.tables.expr_ty(&result_types[0]), &paths::RESULT);
2020-01-09 17:34:13 -06:00
let mut applicability = Applicability::MachineApplicable;
2020-01-10 12:05:10 -06:00
let trimed_ok_span = op.span.until(op.span.with_lo(ok_span.lo() - BytePos(1)));
2020-01-09 17:34:13 -06:00
let some_expr_string = snippet_with_applicability(cx, y[0].span, "", &mut applicability);
2020-01-10 12:05:10 -06:00
let trimmed_ok = snippet_with_applicability(cx, trimed_ok_span, "", &mut applicability);
2020-01-09 17:34:13 -06:00
let mut sugg = format!(
"if let Ok({}) = {} {}",
some_expr_string,
2020-01-10 12:05:10 -06:00
trimmed_ok,
2020-01-09 17:34:13 -06:00
snippet(cx, body[0].span, ".."),
);
if contains_else_clause {
sugg = format!("{} else {}", sugg, snippet(cx, body[1].span, ".."));
}
if print::to_string(print::NO_ANN, |s| s.print_path(x, false)) == "Some" && is_result_type {
2020-01-09 17:34:13 -06:00
span_lint_and_sugg(
cx,
IF_LET_SOME_RESULT,
expr.span,
"Matching on `Some` with `ok()` is redundant",
&format!("Consider matching on `Ok({})` and removing the call to `ok` instead", some_expr_string),
sugg,
applicability,
);
}
2016-10-02 15:48:52 -05:00
}
}
2016-10-02 15:48:52 -05:00
}
}