]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/useless_conversion.rs
Rollup merge of #104901 - krtab:filetype_compare, r=the8472
[rust.git] / src / tools / clippy / clippy_lints / src / useless_conversion.rs
1 use clippy_utils::diagnostics::{span_lint_and_help, span_lint_and_sugg};
2 use clippy_utils::source::{snippet, snippet_with_macro_callsite};
3 use clippy_utils::sugg::Sugg;
4 use clippy_utils::ty::{is_type_diagnostic_item, same_type_and_consts};
5 use clippy_utils::{get_parent_expr, is_trait_method, match_def_path, paths};
6 use if_chain::if_chain;
7 use rustc_errors::Applicability;
8 use rustc_hir::{Expr, ExprKind, HirId, MatchSource};
9 use rustc_lint::{LateContext, LateLintPass};
10 use rustc_middle::ty;
11 use rustc_session::{declare_tool_lint, impl_lint_pass};
12 use rustc_span::sym;
13
14 declare_clippy_lint! {
15     /// ### What it does
16     /// Checks for `Into`, `TryInto`, `From`, `TryFrom`, or `IntoIter` calls
17     /// which uselessly convert to the same type.
18     ///
19     /// ### Why is this bad?
20     /// Redundant code.
21     ///
22     /// ### Example
23     /// ```rust
24     /// // format!() returns a `String`
25     /// let s: String = format!("hello").into();
26     /// ```
27     ///
28     /// Use instead:
29     /// ```rust
30     /// let s: String = format!("hello");
31     /// ```
32     #[clippy::version = "1.45.0"]
33     pub USELESS_CONVERSION,
34     complexity,
35     "calls to `Into`, `TryInto`, `From`, `TryFrom`, or `IntoIter` which perform useless conversions to the same type"
36 }
37
38 #[derive(Default)]
39 pub struct UselessConversion {
40     try_desugar_arm: Vec<HirId>,
41 }
42
43 impl_lint_pass!(UselessConversion => [USELESS_CONVERSION]);
44
45 #[expect(clippy::too_many_lines)]
46 impl<'tcx> LateLintPass<'tcx> for UselessConversion {
47     fn check_expr(&mut self, cx: &LateContext<'tcx>, e: &'tcx Expr<'_>) {
48         if e.span.from_expansion() {
49             return;
50         }
51
52         if Some(&e.hir_id) == self.try_desugar_arm.last() {
53             return;
54         }
55
56         match e.kind {
57             ExprKind::Match(_, arms, MatchSource::TryDesugar) => {
58                 let (ExprKind::Ret(Some(e)) | ExprKind::Break(_, Some(e))) = arms[0].body.kind else {
59                      return
60                 };
61                 if let ExprKind::Call(_, [arg, ..]) = e.kind {
62                     self.try_desugar_arm.push(arg.hir_id);
63                 }
64             },
65
66             ExprKind::MethodCall(name, recv, ..) => {
67                 if is_trait_method(cx, e, sym::Into) && name.ident.as_str() == "into" {
68                     let a = cx.typeck_results().expr_ty(e);
69                     let b = cx.typeck_results().expr_ty(recv);
70                     if same_type_and_consts(a, b) {
71                         let sugg = snippet_with_macro_callsite(cx, recv.span, "<expr>").to_string();
72                         span_lint_and_sugg(
73                             cx,
74                             USELESS_CONVERSION,
75                             e.span,
76                             &format!("useless conversion to the same type: `{b}`"),
77                             "consider removing `.into()`",
78                             sugg,
79                             Applicability::MachineApplicable, // snippet
80                         );
81                     }
82                 }
83                 if is_trait_method(cx, e, sym::IntoIterator) && name.ident.name == sym::into_iter {
84                     if let Some(parent_expr) = get_parent_expr(cx, e) {
85                         if let ExprKind::MethodCall(parent_name, ..) = parent_expr.kind {
86                             if parent_name.ident.name != sym::into_iter {
87                                 return;
88                             }
89                         }
90                     }
91                     let a = cx.typeck_results().expr_ty(e);
92                     let b = cx.typeck_results().expr_ty(recv);
93                     if same_type_and_consts(a, b) {
94                         let sugg = snippet(cx, recv.span, "<expr>").into_owned();
95                         span_lint_and_sugg(
96                             cx,
97                             USELESS_CONVERSION,
98                             e.span,
99                             &format!("useless conversion to the same type: `{b}`"),
100                             "consider removing `.into_iter()`",
101                             sugg,
102                             Applicability::MachineApplicable, // snippet
103                         );
104                     }
105                 }
106                 if_chain! {
107                     if is_trait_method(cx, e, sym::TryInto) && name.ident.name == sym::try_into;
108                     let a = cx.typeck_results().expr_ty(e);
109                     let b = cx.typeck_results().expr_ty(recv);
110                     if is_type_diagnostic_item(cx, a, sym::Result);
111                     if let ty::Adt(_, substs) = a.kind();
112                     if let Some(a_type) = substs.types().next();
113                     if same_type_and_consts(a_type, b);
114
115                     then {
116                         span_lint_and_help(
117                             cx,
118                             USELESS_CONVERSION,
119                             e.span,
120                             &format!("useless conversion to the same type: `{b}`"),
121                             None,
122                             "consider removing `.try_into()`",
123                         );
124                     }
125                 }
126             },
127
128             ExprKind::Call(path, [arg]) => {
129                 if_chain! {
130                     if let ExprKind::Path(ref qpath) = path.kind;
131                     if let Some(def_id) = cx.qpath_res(qpath, path.hir_id).opt_def_id();
132                     then {
133                         let a = cx.typeck_results().expr_ty(e);
134                         let b = cx.typeck_results().expr_ty(arg);
135                         if_chain! {
136                             if match_def_path(cx, def_id, &paths::TRY_FROM);
137                             if is_type_diagnostic_item(cx, a, sym::Result);
138                             if let ty::Adt(_, substs) = a.kind();
139                             if let Some(a_type) = substs.types().next();
140                             if same_type_and_consts(a_type, b);
141
142                             then {
143                                 let hint = format!("consider removing `{}()`", snippet(cx, path.span, "TryFrom::try_from"));
144                                 span_lint_and_help(
145                                     cx,
146                                     USELESS_CONVERSION,
147                                     e.span,
148                                     &format!("useless conversion to the same type: `{b}`"),
149                                     None,
150                                     &hint,
151                                 );
152                             }
153                         }
154
155                         if_chain! {
156                             if Some(def_id) == cx.tcx.lang_items().from_fn();
157                             if same_type_and_consts(a, b);
158
159                             then {
160                                 let sugg = Sugg::hir_with_macro_callsite(cx, arg, "<expr>").maybe_par();
161                                 let sugg_msg =
162                                     format!("consider removing `{}()`", snippet(cx, path.span, "From::from"));
163                                 span_lint_and_sugg(
164                                     cx,
165                                     USELESS_CONVERSION,
166                                     e.span,
167                                     &format!("useless conversion to the same type: `{b}`"),
168                                     &sugg_msg,
169                                     sugg.to_string(),
170                                     Applicability::MachineApplicable, // snippet
171                                 );
172                             }
173                         }
174                     }
175                 }
176             },
177
178             _ => {},
179         }
180     }
181
182     fn check_expr_post(&mut self, _: &LateContext<'tcx>, e: &'tcx Expr<'_>) {
183         if Some(&e.hir_id) == self.try_desugar_arm.last() {
184             self.try_desugar_arm.pop();
185         }
186     }
187 }