]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/redundant_slicing.rs
Auto merge of #85690 - bstrie:m2_arena, r=jackh726,nagisa
[rust.git] / src / tools / clippy / clippy_lints / src / redundant_slicing.rs
1 use clippy_utils::diagnostics::span_lint_and_sugg;
2 use clippy_utils::source::snippet_with_context;
3 use clippy_utils::ty::is_type_lang_item;
4 use clippy_utils::{get_parent_expr, in_macro};
5 use if_chain::if_chain;
6 use rustc_errors::Applicability;
7 use rustc_hir::{BorrowKind, Expr, ExprKind, LangItem, Mutability};
8 use rustc_lint::{LateContext, LateLintPass};
9 use rustc_middle::ty::TyS;
10 use rustc_session::{declare_lint_pass, declare_tool_lint};
11
12 declare_clippy_lint! {
13     /// ### What it does
14     /// Checks for redundant slicing expressions which use the full range, and
15     /// do not change the type.
16     ///
17     /// ### Why is this bad?
18     /// It unnecessarily adds complexity to the expression.
19     ///
20     /// ### Known problems
21     /// If the type being sliced has an implementation of `Index<RangeFull>`
22     /// that actually changes anything then it can't be removed. However, this would be surprising
23     /// to people reading the code and should have a note with it.
24     ///
25     /// ### Example
26     /// ```ignore
27     /// fn get_slice(x: &[u32]) -> &[u32] {
28     ///     &x[..]
29     /// }
30     /// ```
31     /// Use instead:
32     /// ```ignore
33     /// fn get_slice(x: &[u32]) -> &[u32] {
34     ///     x
35     /// }
36     /// ```
37     pub REDUNDANT_SLICING,
38     complexity,
39     "redundant slicing of the whole range of a type"
40 }
41
42 declare_lint_pass!(RedundantSlicing => [REDUNDANT_SLICING]);
43
44 impl LateLintPass<'_> for RedundantSlicing {
45     fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
46         if in_macro(expr.span) {
47             return;
48         }
49
50         let ctxt = expr.span.ctxt();
51         if_chain! {
52             if let ExprKind::AddrOf(BorrowKind::Ref, mutability, addressee) = expr.kind;
53             if addressee.span.ctxt() == ctxt;
54             if let ExprKind::Index(indexed, range) = addressee.kind;
55             if is_type_lang_item(cx, cx.typeck_results().expr_ty_adjusted(range), LangItem::RangeFull);
56             if TyS::same_type(cx.typeck_results().expr_ty(expr), cx.typeck_results().expr_ty(indexed));
57             then {
58                 let mut app = Applicability::MachineApplicable;
59                 let snip = snippet_with_context(cx, indexed.span, ctxt, "..", &mut app).0;
60
61                 let (reborrow_str, help_str) = if mutability == Mutability::Mut {
62                     // The slice was used to reborrow the mutable reference.
63                     ("&mut *", "reborrow the original value instead")
64                 } else if matches!(
65                     get_parent_expr(cx, expr),
66                     Some(Expr {
67                         kind: ExprKind::AddrOf(BorrowKind::Ref, Mutability::Mut, _),
68                         ..
69                     })
70                 ) {
71                     // The slice was used to make a temporary reference.
72                     ("&*", "reborrow the original value instead")
73                 } else {
74                     ("", "use the original value instead")
75                 };
76
77                 span_lint_and_sugg(
78                     cx,
79                     REDUNDANT_SLICING,
80                     expr.span,
81                     "redundant slicing of the whole range",
82                     help_str,
83                     format!("{}{}", reborrow_str, snip),
84                     app,
85                 );
86             }
87         }
88     }
89 }