2020-10-06 09:49:08 +00:00
|
|
|
use crate::utils;
|
|
|
|
use if_chain::if_chain;
|
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use rustc_hir::{def, Arm, Expr, ExprKind, PatKind, QPath};
|
2020-10-11 20:55:05 +00:00
|
|
|
use rustc_lint::LintContext;
|
2020-10-06 09:49:08 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-10-11 20:55:05 +00:00
|
|
|
use rustc_middle::lint::in_external_macro;
|
2020-10-06 09:49:08 +00:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
|
|
|
|
|
|
|
declare_clippy_lint! {
|
|
|
|
/// **What it does:**
|
2020-10-11 20:55:05 +00:00
|
|
|
/// Finds patterns that reimplement `Option::unwrap_or`.
|
2020-10-06 09:49:08 +00:00
|
|
|
///
|
|
|
|
/// **Why is this bad?**
|
|
|
|
/// Concise code helps focusing on behavior instead of boilerplate.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
2020-10-11 20:55:05 +00:00
|
|
|
/// match int_option {
|
2020-10-06 09:49:08 +00:00
|
|
|
/// Some(v) => v,
|
|
|
|
/// None => 1,
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust
|
2020-10-11 20:55:05 +00:00
|
|
|
/// int_option.unwrap_or(1)
|
2020-10-06 09:49:08 +00:00
|
|
|
/// ```
|
2020-10-11 20:55:05 +00:00
|
|
|
pub MANUAL_UNWRAP_OR,
|
|
|
|
complexity,
|
|
|
|
"finds patterns that can be encoded more concisely with `Option::unwrap_or(_else)`"
|
2020-10-06 09:49:08 +00:00
|
|
|
}
|
|
|
|
|
2020-10-11 20:55:05 +00:00
|
|
|
declare_lint_pass!(ManualUnwrapOr => [MANUAL_UNWRAP_OR]);
|
2020-10-06 09:49:08 +00:00
|
|
|
|
2020-10-11 20:55:05 +00:00
|
|
|
impl LateLintPass<'_> for ManualUnwrapOr {
|
2020-10-06 09:49:08 +00:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) {
|
2020-10-11 20:55:05 +00:00
|
|
|
if in_external_macro(cx.sess(), expr.span) {
|
2020-10-06 09:49:08 +00:00
|
|
|
return;
|
|
|
|
}
|
2020-10-11 20:55:05 +00:00
|
|
|
lint_option_unwrap_or_case(cx, expr);
|
2020-10-06 09:49:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn lint_option_unwrap_or_case<'tcx>(cx: &LateContext<'tcx>, expr: &'tcx Expr<'tcx>) -> bool {
|
|
|
|
fn applicable_none_arm<'a>(arms: &'a [Arm<'a>]) -> Option<&'a Arm<'a>> {
|
|
|
|
if_chain! {
|
|
|
|
if arms.len() == 2;
|
|
|
|
if arms.iter().all(|arm| arm.guard.is_none());
|
|
|
|
if let Some((idx, none_arm)) = arms.iter().enumerate().find(|(_, arm)|
|
2020-10-11 20:55:05 +00:00
|
|
|
if let PatKind::Path(ref qpath) = arm.pat.kind {
|
|
|
|
utils::match_qpath(qpath, &utils::paths::OPTION_NONE)
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
2020-10-06 09:49:08 +00:00
|
|
|
);
|
|
|
|
let some_arm = &arms[1 - idx];
|
|
|
|
if let PatKind::TupleStruct(ref some_qpath, &[some_binding], _) = some_arm.pat.kind;
|
|
|
|
if utils::match_qpath(some_qpath, &utils::paths::OPTION_SOME);
|
|
|
|
if let PatKind::Binding(_, binding_hir_id, ..) = some_binding.kind;
|
|
|
|
if let ExprKind::Path(QPath::Resolved(_, body_path)) = some_arm.body.kind;
|
|
|
|
if let def::Res::Local(body_path_hir_id) = body_path.res;
|
|
|
|
if body_path_hir_id == binding_hir_id;
|
2020-10-11 20:55:05 +00:00
|
|
|
if !utils::usage::contains_return_break_continue_macro(none_arm.body);
|
|
|
|
then {
|
|
|
|
Some(none_arm)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
None
|
|
|
|
}
|
2020-10-06 09:49:08 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-11 20:55:05 +00:00
|
|
|
|
2020-10-06 09:49:08 +00:00
|
|
|
if_chain! {
|
2020-10-11 20:55:05 +00:00
|
|
|
if let ExprKind::Match(scrutinee, match_arms, _) = expr.kind;
|
|
|
|
let ty = cx.typeck_results().expr_ty(scrutinee);
|
|
|
|
if utils::is_type_diagnostic_item(cx, ty, sym!(option_type));
|
|
|
|
if let Some(none_arm) = applicable_none_arm(match_arms);
|
|
|
|
if let Some(scrutinee_snippet) = utils::snippet_opt(cx, scrutinee.span);
|
|
|
|
if let Some(none_body_snippet) = utils::snippet_opt(cx, none_arm.body.span);
|
|
|
|
if let Some(indent) = utils::indent_of(cx, expr.span);
|
|
|
|
then {
|
|
|
|
let reindented_none_body =
|
|
|
|
utils::reindent_multiline(none_body_snippet.into(), true, Some(indent));
|
|
|
|
let eager_eval = utils::eager_or_lazy::is_eagerness_candidate(cx, none_arm.body);
|
|
|
|
let method = if eager_eval {
|
|
|
|
"unwrap_or"
|
|
|
|
} else {
|
|
|
|
"unwrap_or_else"
|
|
|
|
};
|
|
|
|
utils::span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MANUAL_UNWRAP_OR, expr.span,
|
|
|
|
&format!("this pattern reimplements `Option::{}`", &method),
|
|
|
|
"replace with",
|
|
|
|
format!(
|
|
|
|
"{}.{}({}{})",
|
|
|
|
scrutinee_snippet,
|
|
|
|
method,
|
|
|
|
if eager_eval { ""} else { "|| " },
|
|
|
|
reindented_none_body
|
|
|
|
),
|
|
|
|
Applicability::MachineApplicable,
|
|
|
|
);
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
2020-10-06 09:49:08 +00:00
|
|
|
}
|
|
|
|
}
|