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