]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/default.rs
Rollup merge of #92021 - woodenarrow:br_single_fp_element, r=Mark-Simulacrum
[rust.git] / src / tools / clippy / clippy_lints / src / default.rs
1 use clippy_utils::diagnostics::{span_lint_and_note, span_lint_and_sugg};
2 use clippy_utils::source::snippet_with_macro_callsite;
3 use clippy_utils::ty::{has_drop, is_copy};
4 use clippy_utils::{any_parent_is_automatically_derived, contains_name, match_def_path, paths};
5 use if_chain::if_chain;
6 use rustc_data_structures::fx::FxHashSet;
7 use rustc_errors::Applicability;
8 use rustc_hir::def::Res;
9 use rustc_hir::{Block, Expr, ExprKind, PatKind, QPath, Stmt, StmtKind};
10 use rustc_lint::{LateContext, LateLintPass};
11 use rustc_middle::ty;
12 use rustc_session::{declare_tool_lint, impl_lint_pass};
13 use rustc_span::symbol::{Ident, Symbol};
14 use rustc_span::Span;
15
16 declare_clippy_lint! {
17     /// ### What it does
18     /// Checks for literal calls to `Default::default()`.
19     ///
20     /// ### Why is this bad?
21     /// It's more clear to the reader to use the name of the type whose default is
22     /// being gotten than the generic `Default`.
23     ///
24     /// ### Example
25     /// ```rust
26     /// // Bad
27     /// let s: String = Default::default();
28     ///
29     /// // Good
30     /// let s = String::default();
31     /// ```
32     #[clippy::version = "pre 1.29.0"]
33     pub DEFAULT_TRAIT_ACCESS,
34     pedantic,
35     "checks for literal calls to `Default::default()`"
36 }
37
38 declare_clippy_lint! {
39     /// ### What it does
40     /// Checks for immediate reassignment of fields initialized
41     /// with Default::default().
42     ///
43     /// ### Why is this bad?
44     ///It's more idiomatic to use the [functional update syntax](https://doc.rust-lang.org/reference/expressions/struct-expr.html#functional-update-syntax).
45     ///
46     /// ### Known problems
47     /// Assignments to patterns that are of tuple type are not linted.
48     ///
49     /// ### Example
50     /// Bad:
51     /// ```
52     /// # #[derive(Default)]
53     /// # struct A { i: i32 }
54     /// let mut a: A = Default::default();
55     /// a.i = 42;
56     /// ```
57     /// Use instead:
58     /// ```
59     /// # #[derive(Default)]
60     /// # struct A { i: i32 }
61     /// let a = A {
62     ///     i: 42,
63     ///     .. Default::default()
64     /// };
65     /// ```
66     #[clippy::version = "1.49.0"]
67     pub FIELD_REASSIGN_WITH_DEFAULT,
68     style,
69     "binding initialized with Default should have its fields set in the initializer"
70 }
71
72 #[derive(Default)]
73 pub struct Default {
74     // Spans linted by `field_reassign_with_default`.
75     reassigned_linted: FxHashSet<Span>,
76 }
77
78 impl_lint_pass!(Default => [DEFAULT_TRAIT_ACCESS, FIELD_REASSIGN_WITH_DEFAULT]);
79
80 impl<'tcx> LateLintPass<'tcx> for Default {
81     fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
82         if_chain! {
83             if !expr.span.from_expansion();
84             // Avoid cases already linted by `field_reassign_with_default`
85             if !self.reassigned_linted.contains(&expr.span);
86             if let ExprKind::Call(path, ..) = expr.kind;
87             if !any_parent_is_automatically_derived(cx.tcx, expr.hir_id);
88             if let ExprKind::Path(ref qpath) = path.kind;
89             if let Some(def_id) = cx.qpath_res(qpath, path.hir_id).opt_def_id();
90             if match_def_path(cx, def_id, &paths::DEFAULT_TRAIT_METHOD);
91             // Detect and ignore <Foo as Default>::default() because these calls do explicitly name the type.
92             if let QPath::Resolved(None, _path) = qpath;
93             let expr_ty = cx.typeck_results().expr_ty(expr);
94             if let ty::Adt(def, ..) = expr_ty.kind();
95             then {
96                 // TODO: Work out a way to put "whatever the imported way of referencing
97                 // this type in this file" rather than a fully-qualified type.
98                 let replacement = format!("{}::default()", cx.tcx.def_path_str(def.did));
99                 span_lint_and_sugg(
100                     cx,
101                     DEFAULT_TRAIT_ACCESS,
102                     expr.span,
103                     &format!("calling `{}` is more clear than this expression", replacement),
104                     "try",
105                     replacement,
106                     Applicability::Unspecified, // First resolve the TODO above
107                 );
108             }
109         }
110     }
111
112     #[allow(clippy::too_many_lines)]
113     fn check_block(&mut self, cx: &LateContext<'tcx>, block: &Block<'tcx>) {
114         // start from the `let mut _ = _::default();` and look at all the following
115         // statements, see if they re-assign the fields of the binding
116         let stmts_head = match block.stmts {
117             // Skip the last statement since there cannot possibly be any following statements that re-assign fields.
118             [head @ .., _] if !head.is_empty() => head,
119             _ => return,
120         };
121         for (stmt_idx, stmt) in stmts_head.iter().enumerate() {
122             // find all binding statements like `let mut _ = T::default()` where `T::default()` is the
123             // `default` method of the `Default` trait, and store statement index in current block being
124             // checked and the name of the bound variable
125             let (local, variant, binding_name, binding_type, span) = if_chain! {
126                 // only take `let ...` statements
127                 if let StmtKind::Local(local) = stmt.kind;
128                 if let Some(expr) = local.init;
129                 if !any_parent_is_automatically_derived(cx.tcx, expr.hir_id);
130                 if !expr.span.from_expansion();
131                 // only take bindings to identifiers
132                 if let PatKind::Binding(_, binding_id, ident, _) = local.pat.kind;
133                 // only when assigning `... = Default::default()`
134                 if is_expr_default(expr, cx);
135                 let binding_type = cx.typeck_results().node_type(binding_id);
136                 if let Some(adt) = binding_type.ty_adt_def();
137                 if adt.is_struct();
138                 let variant = adt.non_enum_variant();
139                 if adt.did.is_local() || !variant.is_field_list_non_exhaustive();
140                 let module_did = cx.tcx.parent_module(stmt.hir_id).to_def_id();
141                 if variant
142                     .fields
143                     .iter()
144                     .all(|field| field.vis.is_accessible_from(module_did, cx.tcx));
145                 let all_fields_are_copy = variant
146                     .fields
147                     .iter()
148                     .all(|field| {
149                         is_copy(cx, cx.tcx.type_of(field.did))
150                     });
151                 if !has_drop(cx, binding_type) || all_fields_are_copy;
152                 then {
153                     (local, variant, ident.name, binding_type, expr.span)
154                 } else {
155                     continue;
156                 }
157             };
158
159             // find all "later statement"'s where the fields of the binding set as
160             // Default::default() get reassigned, unless the reassignment refers to the original binding
161             let mut first_assign = None;
162             let mut assigned_fields = Vec::new();
163             let mut cancel_lint = false;
164             for consecutive_statement in &block.stmts[stmt_idx + 1..] {
165                 // find out if and which field was set by this `consecutive_statement`
166                 if let Some((field_ident, assign_rhs)) = field_reassigned_by_stmt(consecutive_statement, binding_name) {
167                     // interrupt and cancel lint if assign_rhs references the original binding
168                     if contains_name(binding_name, assign_rhs) {
169                         cancel_lint = true;
170                         break;
171                     }
172
173                     // if the field was previously assigned, replace the assignment, otherwise insert the assignment
174                     if let Some(prev) = assigned_fields
175                         .iter_mut()
176                         .find(|(field_name, _)| field_name == &field_ident.name)
177                     {
178                         *prev = (field_ident.name, assign_rhs);
179                     } else {
180                         assigned_fields.push((field_ident.name, assign_rhs));
181                     }
182
183                     // also set first instance of error for help message
184                     if first_assign.is_none() {
185                         first_assign = Some(consecutive_statement);
186                     }
187                 }
188                 // interrupt if no field was assigned, since we only want to look at consecutive statements
189                 else {
190                     break;
191                 }
192             }
193
194             // if there are incorrectly assigned fields, do a span_lint_and_note to suggest
195             // construction using `Ty { fields, ..Default::default() }`
196             if !assigned_fields.is_empty() && !cancel_lint {
197                 // if all fields of the struct are not assigned, add `.. Default::default()` to the suggestion.
198                 let ext_with_default = !variant
199                     .fields
200                     .iter()
201                     .all(|field| assigned_fields.iter().any(|(a, _)| a == &field.name));
202
203                 let field_list = assigned_fields
204                     .into_iter()
205                     .map(|(field, rhs)| {
206                         // extract and store the assigned value for help message
207                         let value_snippet = snippet_with_macro_callsite(cx, rhs.span, "..");
208                         format!("{}: {}", field, value_snippet)
209                     })
210                     .collect::<Vec<String>>()
211                     .join(", ");
212
213                 // give correct suggestion if generics are involved (see #6944)
214                 let binding_type = if_chain! {
215                     if let ty::Adt(adt_def, substs) = binding_type.kind();
216                     if !substs.is_empty();
217                     then {
218                         let adt_def_ty_name = cx.tcx.item_name(adt_def.did);
219                         let generic_args = substs.iter().collect::<Vec<_>>();
220                         let tys_str = generic_args
221                             .iter()
222                             .map(ToString::to_string)
223                             .collect::<Vec<_>>()
224                             .join(", ");
225                         format!("{}::<{}>", adt_def_ty_name, &tys_str)
226                     } else {
227                         binding_type.to_string()
228                     }
229                 };
230
231                 let sugg = if ext_with_default {
232                     if field_list.is_empty() {
233                         format!("{}::default()", binding_type)
234                     } else {
235                         format!("{} {{ {}, ..Default::default() }}", binding_type, field_list)
236                     }
237                 } else {
238                     format!("{} {{ {} }}", binding_type, field_list)
239                 };
240
241                 // span lint once per statement that binds default
242                 span_lint_and_note(
243                     cx,
244                     FIELD_REASSIGN_WITH_DEFAULT,
245                     first_assign.unwrap().span,
246                     "field assignment outside of initializer for an instance created with Default::default()",
247                     Some(local.span),
248                     &format!(
249                         "consider initializing the variable with `{}` and removing relevant reassignments",
250                         sugg
251                     ),
252                 );
253                 self.reassigned_linted.insert(span);
254             }
255         }
256     }
257 }
258
259 /// Checks if the given expression is the `default` method belonging to the `Default` trait.
260 fn is_expr_default<'tcx>(expr: &'tcx Expr<'tcx>, cx: &LateContext<'tcx>) -> bool {
261     if_chain! {
262         if let ExprKind::Call(fn_expr, _) = &expr.kind;
263         if let ExprKind::Path(qpath) = &fn_expr.kind;
264         if let Res::Def(_, def_id) = cx.qpath_res(qpath, fn_expr.hir_id);
265         then {
266             // right hand side of assignment is `Default::default`
267             match_def_path(cx, def_id, &paths::DEFAULT_TRAIT_METHOD)
268         } else {
269             false
270         }
271     }
272 }
273
274 /// Returns the reassigned field and the assigning expression (right-hand side of assign).
275 fn field_reassigned_by_stmt<'tcx>(this: &Stmt<'tcx>, binding_name: Symbol) -> Option<(Ident, &'tcx Expr<'tcx>)> {
276     if_chain! {
277         // only take assignments
278         if let StmtKind::Semi(later_expr) = this.kind;
279         if let ExprKind::Assign(assign_lhs, assign_rhs, _) = later_expr.kind;
280         // only take assignments to fields where the left-hand side field is a field of
281         // the same binding as the previous statement
282         if let ExprKind::Field(binding, field_ident) = assign_lhs.kind;
283         if let ExprKind::Path(QPath::Resolved(_, path)) = binding.kind;
284         if let Some(second_binding_name) = path.segments.last();
285         if second_binding_name.ident.name == binding_name;
286         then {
287             Some((field_ident, assign_rhs))
288         } else {
289             None
290         }
291     }
292 }