]> git.lizzy.rs Git - rust.git/blob - clippy_lints/src/new_without_default.rs
Auto merge of #8799 - Alexendoo:lintcheck-common, r=giraffate
[rust.git] / clippy_lints / src / new_without_default.rs
1 use clippy_utils::diagnostics::span_lint_hir_and_then;
2 use clippy_utils::return_ty;
3 use clippy_utils::source::snippet;
4 use clippy_utils::sugg::DiagnosticExt;
5 use if_chain::if_chain;
6 use rustc_errors::Applicability;
7 use rustc_hir as hir;
8 use rustc_hir::HirIdSet;
9 use rustc_lint::{LateContext, LateLintPass, LintContext};
10 use rustc_middle::lint::in_external_macro;
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 public types with a `pub fn new() -> Self` method and no
17     /// implementation of
18     /// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html).
19     ///
20     /// ### Why is this bad?
21     /// The user might expect to be able to use
22     /// [`Default`](https://doc.rust-lang.org/std/default/trait.Default.html) as the
23     /// type can be constructed without arguments.
24     ///
25     /// ### Example
26     /// ```ignore
27     /// pub struct Foo(Bar);
28     ///
29     /// impl Foo {
30     ///     pub fn new() -> Self {
31     ///         Foo(Bar::new())
32     ///     }
33     /// }
34     /// ```
35     ///
36     /// To fix the lint, add a `Default` implementation that delegates to `new`:
37     ///
38     /// ```ignore
39     /// pub struct Foo(Bar);
40     ///
41     /// impl Default for Foo {
42     ///     fn default() -> Self {
43     ///         Foo::new()
44     ///     }
45     /// }
46     /// ```
47     #[clippy::version = "pre 1.29.0"]
48     pub NEW_WITHOUT_DEFAULT,
49     style,
50     "`pub fn new() -> Self` method without `Default` implementation"
51 }
52
53 #[derive(Clone, Default)]
54 pub struct NewWithoutDefault {
55     impling_types: Option<HirIdSet>,
56 }
57
58 impl_lint_pass!(NewWithoutDefault => [NEW_WITHOUT_DEFAULT]);
59
60 impl<'tcx> LateLintPass<'tcx> for NewWithoutDefault {
61     fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
62         if let hir::ItemKind::Impl(hir::Impl {
63             of_trait: None,
64             generics,
65             self_ty: impl_self_ty,
66             items,
67             ..
68         }) = item.kind
69         {
70             for assoc_item in *items {
71                 if assoc_item.kind == (hir::AssocItemKind::Fn { has_self: false }) {
72                     let impl_item = cx.tcx.hir().impl_item(assoc_item.id);
73                     if in_external_macro(cx.sess(), impl_item.span) {
74                         return;
75                     }
76                     if let hir::ImplItemKind::Fn(ref sig, _) = impl_item.kind {
77                         let name = impl_item.ident.name;
78                         let id = impl_item.hir_id();
79                         if sig.header.constness == hir::Constness::Const {
80                             // can't be implemented by default
81                             return;
82                         }
83                         if sig.header.unsafety == hir::Unsafety::Unsafe {
84                             // can't be implemented for unsafe new
85                             return;
86                         }
87                         if clippy_utils::is_doc_hidden(cx.tcx.hir().attrs(id)) {
88                             // shouldn't be implemented when it is hidden in docs
89                             return;
90                         }
91                         if impl_item
92                             .generics
93                             .params
94                             .iter()
95                             .any(|gen| matches!(gen.kind, hir::GenericParamKind::Type { .. }))
96                         {
97                             // when the result of `new()` depends on a type parameter we should not require
98                             // an
99                             // impl of `Default`
100                             return;
101                         }
102                         if_chain! {
103                             if sig.decl.inputs.is_empty();
104                             if name == sym::new;
105                             if cx.access_levels.is_reachable(impl_item.def_id);
106                             let self_def_id = cx.tcx.hir().get_parent_item(id);
107                             let self_ty = cx.tcx.type_of(self_def_id);
108                             if self_ty == return_ty(cx, id);
109                             if let Some(default_trait_id) = cx.tcx.get_diagnostic_item(sym::Default);
110                             then {
111                                 if self.impling_types.is_none() {
112                                     let mut impls = HirIdSet::default();
113                                     cx.tcx.for_each_impl(default_trait_id, |d| {
114                                         if let Some(ty_def) = cx.tcx.type_of(d).ty_adt_def() {
115                                             if let Some(local_def_id) = ty_def.did().as_local() {
116                                                 impls.insert(cx.tcx.hir().local_def_id_to_hir_id(local_def_id));
117                                             }
118                                         }
119                                     });
120                                     self.impling_types = Some(impls);
121                                 }
122
123                                 // Check if a Default implementation exists for the Self type, regardless of
124                                 // generics
125                                 if_chain! {
126                                     if let Some(ref impling_types) = self.impling_types;
127                                     if let Some(self_def) = cx.tcx.type_of(self_def_id).ty_adt_def();
128                                     if let Some(self_local_did) = self_def.did().as_local();
129                                     let self_id = cx.tcx.hir().local_def_id_to_hir_id(self_local_did);
130                                     if impling_types.contains(&self_id);
131                                     then {
132                                         return;
133                                     }
134                                 }
135
136                                 let generics_sugg = snippet(cx, generics.span, "");
137                                 let self_ty_fmt = self_ty.to_string();
138                                 let self_type_snip = snippet(cx, impl_self_ty.span, &self_ty_fmt);
139                                 span_lint_hir_and_then(
140                                     cx,
141                                     NEW_WITHOUT_DEFAULT,
142                                     id,
143                                     impl_item.span,
144                                     &format!(
145                                         "you should consider adding a `Default` implementation for `{}`",
146                                         self_type_snip
147                                     ),
148                                     |diag| {
149                                         diag.suggest_prepend_item(
150                                             cx,
151                                             item.span,
152                                             "try adding this",
153                                             &create_new_without_default_suggest_msg(&self_type_snip, &generics_sugg),
154                                             Applicability::MaybeIncorrect,
155                                         );
156                                     },
157                                 );
158                             }
159                         }
160                     }
161                 }
162             }
163         }
164     }
165 }
166
167 fn create_new_without_default_suggest_msg(self_type_snip: &str, generics_sugg: &str) -> String {
168     #[rustfmt::skip]
169     format!(
170 "impl{} Default for {} {{
171     fn default() -> Self {{
172         Self::new()
173     }}
174 }}", generics_sugg, self_type_snip)
175 }