]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/macro_use.rs
Rollup merge of #101266 - LuisCardosoOliveira:translation-rustcsession-pt3, r=davidtwco
[rust.git] / src / tools / clippy / clippy_lints / src / macro_use.rs
1 use clippy_utils::diagnostics::span_lint_hir_and_then;
2 use clippy_utils::source::snippet;
3 use hir::def::{DefKind, Res};
4 use if_chain::if_chain;
5 use rustc_ast::ast;
6 use rustc_data_structures::fx::{FxHashMap, FxHashSet};
7 use rustc_errors::Applicability;
8 use rustc_hir as hir;
9 use rustc_lint::{LateContext, LateLintPass, LintContext};
10 use rustc_session::{declare_tool_lint, impl_lint_pass};
11 use rustc_span::{edition::Edition, sym, Span};
12
13 declare_clippy_lint! {
14     /// ### What it does
15     /// Checks for `#[macro_use] use...`.
16     ///
17     /// ### Why is this bad?
18     /// Since the Rust 2018 edition you can import
19     /// macro's directly, this is considered idiomatic.
20     ///
21     /// ### Example
22     /// ```rust,ignore
23     /// #[macro_use]
24     /// use some_macro;
25     /// ```
26     #[clippy::version = "1.44.0"]
27     pub MACRO_USE_IMPORTS,
28     pedantic,
29     "#[macro_use] is no longer needed"
30 }
31
32 #[derive(Clone, Debug, PartialEq, Eq)]
33 struct PathAndSpan {
34     path: String,
35     span: Span,
36 }
37
38 /// `MacroRefData` includes the name of the macro.
39 #[derive(Debug, Clone)]
40 pub struct MacroRefData {
41     name: String,
42 }
43
44 impl MacroRefData {
45     pub fn new(name: String) -> Self {
46         Self { name }
47     }
48 }
49
50 #[derive(Default)]
51 #[expect(clippy::module_name_repetitions)]
52 pub struct MacroUseImports {
53     /// the actual import path used and the span of the attribute above it. The value is
54     /// the location, where the lint should be emitted.
55     imports: Vec<(String, Span, hir::HirId)>,
56     /// the span of the macro reference, kept to ensure only one reference is used per macro call.
57     collected: FxHashSet<Span>,
58     mac_refs: Vec<MacroRefData>,
59 }
60
61 impl_lint_pass!(MacroUseImports => [MACRO_USE_IMPORTS]);
62
63 impl MacroUseImports {
64     fn push_unique_macro(&mut self, cx: &LateContext<'_>, span: Span) {
65         let call_site = span.source_callsite();
66         let name = snippet(cx, cx.sess().source_map().span_until_char(call_site, '!'), "_");
67         if span.source_callee().is_some() && !self.collected.contains(&call_site) {
68             let name = if name.contains("::") {
69                 name.split("::").last().unwrap().to_string()
70             } else {
71                 name.to_string()
72             };
73
74             self.mac_refs.push(MacroRefData::new(name));
75             self.collected.insert(call_site);
76         }
77     }
78
79     fn push_unique_macro_pat_ty(&mut self, cx: &LateContext<'_>, span: Span) {
80         let call_site = span.source_callsite();
81         let name = snippet(cx, cx.sess().source_map().span_until_char(call_site, '!'), "_");
82         if span.source_callee().is_some() && !self.collected.contains(&call_site) {
83             self.mac_refs.push(MacroRefData::new(name.to_string()));
84             self.collected.insert(call_site);
85         }
86     }
87 }
88
89 impl<'tcx> LateLintPass<'tcx> for MacroUseImports {
90     fn check_item(&mut self, cx: &LateContext<'_>, item: &hir::Item<'_>) {
91         if_chain! {
92             if cx.sess().opts.edition >= Edition::Edition2018;
93             if let hir::ItemKind::Use(path, _kind) = &item.kind;
94             let hir_id = item.hir_id();
95             let attrs = cx.tcx.hir().attrs(hir_id);
96             if let Some(mac_attr) = attrs.iter().find(|attr| attr.has_name(sym::macro_use));
97             if let Res::Def(DefKind::Mod, id) = path.res;
98             if !id.is_local();
99             then {
100                 for kid in cx.tcx.module_children(id).iter() {
101                     if let Res::Def(DefKind::Macro(_mac_type), mac_id) = kid.res {
102                         let span = mac_attr.span;
103                         let def_path = cx.tcx.def_path_str(mac_id);
104                         self.imports.push((def_path, span, hir_id));
105                     }
106                 }
107             } else {
108                 if item.span.from_expansion() {
109                     self.push_unique_macro_pat_ty(cx, item.span);
110                 }
111             }
112         }
113     }
114     fn check_attribute(&mut self, cx: &LateContext<'_>, attr: &ast::Attribute) {
115         if attr.span.from_expansion() {
116             self.push_unique_macro(cx, attr.span);
117         }
118     }
119     fn check_expr(&mut self, cx: &LateContext<'_>, expr: &hir::Expr<'_>) {
120         if expr.span.from_expansion() {
121             self.push_unique_macro(cx, expr.span);
122         }
123     }
124     fn check_stmt(&mut self, cx: &LateContext<'_>, stmt: &hir::Stmt<'_>) {
125         if stmt.span.from_expansion() {
126             self.push_unique_macro(cx, stmt.span);
127         }
128     }
129     fn check_pat(&mut self, cx: &LateContext<'_>, pat: &hir::Pat<'_>) {
130         if pat.span.from_expansion() {
131             self.push_unique_macro_pat_ty(cx, pat.span);
132         }
133     }
134     fn check_ty(&mut self, cx: &LateContext<'_>, ty: &hir::Ty<'_>) {
135         if ty.span.from_expansion() {
136             self.push_unique_macro_pat_ty(cx, ty.span);
137         }
138     }
139     fn check_crate_post(&mut self, cx: &LateContext<'_>) {
140         let mut used = FxHashMap::default();
141         let mut check_dup = vec![];
142         for (import, span, hir_id) in &self.imports {
143             let found_idx = self.mac_refs.iter().position(|mac| import.ends_with(&mac.name));
144
145             if let Some(idx) = found_idx {
146                 self.mac_refs.remove(idx);
147                 let seg = import.split("::").collect::<Vec<_>>();
148
149                 match seg.as_slice() {
150                     // an empty path is impossible
151                     // a path should always consist of 2 or more segments
152                     [] | [_] => return,
153                     [root, item] => {
154                         if !check_dup.contains(&(*item).to_string()) {
155                             used.entry(((*root).to_string(), span, hir_id))
156                                 .or_insert_with(Vec::new)
157                                 .push((*item).to_string());
158                             check_dup.push((*item).to_string());
159                         }
160                     },
161                     [root, rest @ ..] => {
162                         if rest.iter().all(|item| !check_dup.contains(&(*item).to_string())) {
163                             let filtered = rest
164                                 .iter()
165                                 .filter_map(|item| {
166                                     if check_dup.contains(&(*item).to_string()) {
167                                         None
168                                     } else {
169                                         Some((*item).to_string())
170                                     }
171                                 })
172                                 .collect::<Vec<_>>();
173                             used.entry(((*root).to_string(), span, hir_id))
174                                 .or_insert_with(Vec::new)
175                                 .push(filtered.join("::"));
176                             check_dup.extend(filtered);
177                         } else {
178                             let rest = rest.to_vec();
179                             used.entry(((*root).to_string(), span, hir_id))
180                                 .or_insert_with(Vec::new)
181                                 .push(rest.join("::"));
182                             check_dup.extend(rest.iter().map(ToString::to_string));
183                         }
184                     },
185                 }
186             }
187         }
188
189         let mut suggestions = vec![];
190         for ((root, span, hir_id), path) in used {
191             if path.len() == 1 {
192                 suggestions.push((span, format!("{}::{}", root, path[0]), hir_id));
193             } else {
194                 suggestions.push((span, format!("{}::{{{}}}", root, path.join(", ")), hir_id));
195             }
196         }
197
198         // If mac_refs is not empty we have encountered an import we could not handle
199         // such as `std::prelude::v1::foo` or some other macro that expands to an import.
200         if self.mac_refs.is_empty() {
201             for (span, import, hir_id) in suggestions {
202                 let help = format!("use {};", import);
203                 span_lint_hir_and_then(
204                     cx,
205                     MACRO_USE_IMPORTS,
206                     *hir_id,
207                     *span,
208                     "`macro_use` attributes are no longer needed in the Rust 2018 edition",
209                     |diag| {
210                         diag.span_suggestion(
211                             *span,
212                             "remove the attribute and import the macro directly, try",
213                             help,
214                             Applicability::MaybeIncorrect,
215                         );
216                     },
217                 );
218             }
219         }
220     }
221 }