|
1 |
| -use clippy_utils::diagnostics::span_lint_and_help; |
2 |
| -use clippy_utils::{meets_msrv, msrvs}; |
3 |
| -use if_chain::if_chain; |
4 |
| -use rustc_hir as hir; |
| 1 | +use clippy_utils::diagnostics::span_lint_and_then; |
| 2 | +use clippy_utils::macros::span_is_local; |
| 3 | +use clippy_utils::source::snippet_opt; |
| 4 | +use clippy_utils::{meets_msrv, msrvs, path_def_id}; |
| 5 | +use rustc_errors::Applicability; |
| 6 | +use rustc_hir::intravisit::{walk_path, Visitor}; |
| 7 | +use rustc_hir::{ |
| 8 | + GenericArg, GenericArgs, HirId, Impl, ImplItemKind, ImplItemRef, Item, ItemKind, PatKind, Path, PathSegment, Ty, |
| 9 | + TyKind, |
| 10 | +}; |
5 | 11 | use rustc_lint::{LateContext, LateLintPass};
|
| 12 | +use rustc_middle::hir::nested_filter::OnlyBodies; |
6 | 13 | use rustc_semver::RustcVersion;
|
7 | 14 | use rustc_session::{declare_tool_lint, impl_lint_pass};
|
8 |
| -use rustc_span::symbol::sym; |
| 15 | +use rustc_span::symbol::{kw, sym}; |
| 16 | +use rustc_span::{Span, Symbol}; |
9 | 17 |
|
10 | 18 | declare_clippy_lint! {
|
11 | 19 | /// ### What it does
|
@@ -54,28 +62,152 @@ impl FromOverInto {
|
54 | 62 | impl_lint_pass!(FromOverInto => [FROM_OVER_INTO]);
|
55 | 63 |
|
56 | 64 | impl<'tcx> LateLintPass<'tcx> for FromOverInto {
|
57 |
| - fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) { |
58 |
| - if !meets_msrv(self.msrv, msrvs::RE_REBALANCING_COHERENCE) { |
| 65 | + fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'_>) { |
| 66 | + if !meets_msrv(self.msrv, msrvs::RE_REBALANCING_COHERENCE) || !span_is_local(item.span) { |
59 | 67 | return;
|
60 | 68 | }
|
61 | 69 |
|
62 |
| - if_chain! { |
63 |
| - if let hir::ItemKind::Impl{ .. } = &item.kind; |
64 |
| - if let Some(impl_trait_ref) = cx.tcx.impl_trait_ref(item.def_id); |
65 |
| - if cx.tcx.is_diagnostic_item(sym::Into, impl_trait_ref.def_id); |
66 |
| - |
67 |
| - then { |
68 |
| - span_lint_and_help( |
69 |
| - cx, |
70 |
| - FROM_OVER_INTO, |
71 |
| - cx.tcx.sess.source_map().guess_head_span(item.span), |
72 |
| - "an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true", |
73 |
| - None, |
74 |
| - &format!("consider to implement `From<{}>` instead", impl_trait_ref.self_ty()), |
75 |
| - ); |
76 |
| - } |
| 70 | + if let ItemKind::Impl(Impl { |
| 71 | + of_trait: Some(hir_trait_ref), |
| 72 | + self_ty, |
| 73 | + items: [impl_item_ref], |
| 74 | + .. |
| 75 | + }) = item.kind |
| 76 | + && let Some(into_trait_seg) = hir_trait_ref.path.segments.last() |
| 77 | + // `impl Into<target_ty> for self_ty` |
| 78 | + && let Some(GenericArgs { args: [GenericArg::Type(target_ty)], .. }) = into_trait_seg.args |
| 79 | + && let Some(middle_trait_ref) = cx.tcx.impl_trait_ref(item.def_id) |
| 80 | + && cx.tcx.is_diagnostic_item(sym::Into, middle_trait_ref.def_id) |
| 81 | + { |
| 82 | + span_lint_and_then( |
| 83 | + cx, |
| 84 | + FROM_OVER_INTO, |
| 85 | + cx.tcx.sess.source_map().guess_head_span(item.span), |
| 86 | + "an implementation of `From` is preferred since it gives you `Into<_>` for free where the reverse isn't true", |
| 87 | + |diag| { |
| 88 | + // If the target type is likely foreign mention the orphan rules as it's a common source of confusion |
| 89 | + if path_def_id(cx, target_ty.peel_refs()).map_or(true, |id| !id.is_local()) { |
| 90 | + diag.help( |
| 91 | + "`impl From<Local> for Foreign` is allowed by the orphan rules, for more information see\n\ |
| 92 | + https://doc.rust-lang.org/reference/items/implementations.html#trait-implementation-coherence" |
| 93 | + ); |
| 94 | + } |
| 95 | + |
| 96 | + let message = format!("replace the `Into` implentation with `From<{}>`", middle_trait_ref.self_ty()); |
| 97 | + if let Some(suggestions) = convert_to_from(cx, into_trait_seg, target_ty, self_ty, impl_item_ref) { |
| 98 | + diag.multipart_suggestion(message, suggestions, Applicability::MachineApplicable); |
| 99 | + } else { |
| 100 | + diag.help(message); |
| 101 | + } |
| 102 | + }, |
| 103 | + ); |
77 | 104 | }
|
78 | 105 | }
|
79 | 106 |
|
80 | 107 | extract_msrv_attr!(LateContext);
|
81 | 108 | }
|
| 109 | + |
| 110 | +/// Finds the occurences of `Self` and `self` |
| 111 | +struct SelfFinder<'a, 'tcx> { |
| 112 | + cx: &'a LateContext<'tcx>, |
| 113 | + /// Occurences of `Self` |
| 114 | + upper: Vec<Span>, |
| 115 | + /// Occurences of `self` |
| 116 | + lower: Vec<Span>, |
| 117 | + /// If any of the `self`/`Self` usages were from an expansion, or the body contained a binding |
| 118 | + /// already named `val` |
| 119 | + invalid: bool, |
| 120 | +} |
| 121 | + |
| 122 | +impl<'a, 'tcx> Visitor<'tcx> for SelfFinder<'a, 'tcx> { |
| 123 | + type NestedFilter = OnlyBodies; |
| 124 | + |
| 125 | + fn nested_visit_map(&mut self) -> Self::Map { |
| 126 | + self.cx.tcx.hir() |
| 127 | + } |
| 128 | + |
| 129 | + fn visit_path(&mut self, path: &'tcx Path<'tcx>, _id: HirId) { |
| 130 | + for segment in path.segments { |
| 131 | + match segment.ident.name { |
| 132 | + kw::SelfLower => self.lower.push(segment.ident.span), |
| 133 | + kw::SelfUpper => self.upper.push(segment.ident.span), |
| 134 | + _ => continue, |
| 135 | + } |
| 136 | + } |
| 137 | + |
| 138 | + self.invalid |= path.span.from_expansion(); |
| 139 | + if !self.invalid { |
| 140 | + walk_path(self, path); |
| 141 | + } |
| 142 | + } |
| 143 | + |
| 144 | + fn visit_name(&mut self, name: Symbol) { |
| 145 | + if name == sym::val { |
| 146 | + self.invalid = true; |
| 147 | + } |
| 148 | + } |
| 149 | +} |
| 150 | + |
| 151 | +fn convert_to_from( |
| 152 | + cx: &LateContext<'_>, |
| 153 | + into_trait_seg: &PathSegment<'_>, |
| 154 | + target_ty: &Ty<'_>, |
| 155 | + self_ty: &Ty<'_>, |
| 156 | + impl_item_ref: &ImplItemRef, |
| 157 | +) -> Option<Vec<(Span, String)>> { |
| 158 | + let impl_item = cx.tcx.hir().impl_item(impl_item_ref.id); |
| 159 | + let ImplItemKind::Fn(ref sig, body_id) = impl_item.kind else { return None }; |
| 160 | + let body = cx.tcx.hir().body(body_id); |
| 161 | + let [input] = body.params else { return None }; |
| 162 | + let PatKind::Binding(.., self_ident, None) = input.pat.kind else { return None }; |
| 163 | + |
| 164 | + let from = snippet_opt(cx, self_ty.span)?; |
| 165 | + let into = snippet_opt(cx, target_ty.span)?; |
| 166 | + |
| 167 | + let mut suggestions = vec![ |
| 168 | + // impl Into<T> for U -> impl From<T> for U |
| 169 | + // ~~~~ ~~~~ |
| 170 | + (into_trait_seg.ident.span, String::from("From")), |
| 171 | + // impl Into<T> for U -> impl Into<U> for U |
| 172 | + // ~ ~ |
| 173 | + (target_ty.span, from.clone()), |
| 174 | + // impl Into<T> for U -> impl Into<T> for T |
| 175 | + // ~ ~ |
| 176 | + (self_ty.span, into), |
| 177 | + // fn into(self) -> T -> fn from(self) -> T |
| 178 | + // ~~~~ ~~~~ |
| 179 | + (impl_item.ident.span, String::from("from")), |
| 180 | + // fn into([mut] self) -> T -> fn into([mut] v: T) -> T |
| 181 | + // ~~~~ ~~~~ |
| 182 | + (self_ident.span, format!("val: {from}")), |
| 183 | + // fn into(self) -> T -> fn into(self) -> Self |
| 184 | + // ~ ~~~~ |
| 185 | + (sig.decl.output.span(), String::from("Self")), |
| 186 | + ]; |
| 187 | + |
| 188 | + let mut finder = SelfFinder { |
| 189 | + cx, |
| 190 | + upper: Vec::new(), |
| 191 | + lower: Vec::new(), |
| 192 | + invalid: false, |
| 193 | + }; |
| 194 | + finder.visit_expr(body.value); |
| 195 | + |
| 196 | + if finder.invalid { |
| 197 | + return None; |
| 198 | + } |
| 199 | + |
| 200 | + // don't try to replace e.g. `Self::default()` with `&[T]::default()` |
| 201 | + if !finder.upper.is_empty() && !matches!(self_ty.kind, TyKind::Path(_)) { |
| 202 | + return None; |
| 203 | + } |
| 204 | + |
| 205 | + for span in finder.upper { |
| 206 | + suggestions.push((span, from.clone())); |
| 207 | + } |
| 208 | + for span in finder.lower { |
| 209 | + suggestions.push((span, String::from("val"))); |
| 210 | + } |
| 211 | + |
| 212 | + Some(suggestions) |
| 213 | +} |
0 commit comments