2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
|
|
|
use clippy_utils::last_path_segment;
|
|
|
|
use clippy_utils::source::snippet;
|
|
|
|
use if_chain::if_chain;
|
|
|
|
use rustc_errors::Applicability;
|
2023-03-16 17:00:08 -05:00
|
|
|
use rustc_hir::{GenericArg, GenericArgsParentheses, Mutability, Ty, TyKind};
|
2020-11-05 07:29:48 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-12-20 10:19:49 -06:00
|
|
|
use rustc_span::symbol::sym;
|
2020-11-05 07:29:48 -06:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for usage of `&Option<&T>`.
|
2020-11-05 07:29:48 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Since `&` is Copy, it's useless to have a
|
2020-11-05 07:29:48 -06:00
|
|
|
/// reference on `Option<&T>`.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Known problems
|
|
|
|
/// It may be irrelevant to use this lint on
|
2020-11-05 07:29:48 -06:00
|
|
|
/// public API code as it will make a breaking change to apply it.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2020-11-05 07:29:48 -06:00
|
|
|
/// ```rust,ignore
|
|
|
|
/// let x: &Option<&u32> = &Some(&0u32);
|
|
|
|
/// ```
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// let x: Option<&u32> = Some(&0u32);
|
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "1.49.0"]
|
2020-11-05 07:29:48 -06:00
|
|
|
pub REF_OPTION_REF,
|
|
|
|
pedantic,
|
|
|
|
"use `Option<&T>` instead of `&Option<&T>`"
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint_pass!(RefOptionRef => [REF_OPTION_REF]);
|
|
|
|
|
|
|
|
impl<'tcx> LateLintPass<'tcx> for RefOptionRef {
|
|
|
|
fn check_ty(&mut self, cx: &LateContext<'tcx>, ty: &'tcx Ty<'tcx>) {
|
2023-11-10 11:29:28 -06:00
|
|
|
if let TyKind::Ref(_, ref mut_ty) = ty.kind
|
|
|
|
&& mut_ty.mutbl == Mutability::Not
|
|
|
|
&& let TyKind::Path(ref qpath) = &mut_ty.ty.kind
|
|
|
|
&& let last = last_path_segment(qpath)
|
|
|
|
&& let Some(def_id) = last.res.opt_def_id()
|
2020-11-05 07:29:48 -06:00
|
|
|
|
2023-11-10 11:29:28 -06:00
|
|
|
&& cx.tcx.is_diagnostic_item(sym::Option, def_id)
|
|
|
|
&& let Some(params) = last_path_segment(qpath).args
|
|
|
|
&& params.parenthesized == GenericArgsParentheses::No
|
|
|
|
&& let Some(inner_ty) = params.args.iter().find_map(|arg| match arg {
|
2020-11-05 07:29:48 -06:00
|
|
|
GenericArg::Type(inner_ty) => Some(inner_ty),
|
|
|
|
_ => None,
|
2023-11-10 11:29:28 -06:00
|
|
|
})
|
|
|
|
&& let TyKind::Ref(_, ref inner_mut_ty) = inner_ty.kind
|
|
|
|
&& inner_mut_ty.mutbl == Mutability::Not
|
2020-11-05 07:29:48 -06:00
|
|
|
|
2023-11-10 11:29:28 -06:00
|
|
|
{
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
REF_OPTION_REF,
|
|
|
|
ty.span,
|
|
|
|
"since `&` implements the `Copy` trait, `&Option<&T>` can be simplified to `Option<&T>`",
|
|
|
|
"try",
|
|
|
|
format!("Option<{}>", &snippet(cx, inner_ty.span, "..")),
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
2020-11-05 07:29:48 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|