Skip to content

Commit cb87a57

Browse files
committed
Auto merge of #12601 - Alexendoo:box-default-style, r=llogiq
Move `box_default` to style, do not suggest turbofishes `Box::default()` [had its `#[rustc_box]` attribute removed](https://github.com/rust-lang/rust/pull/108476/files#r1120930164) in 1.69 so is no longer a perf related lint The lint is moved to style but no longer produces suggestions containing turbofishes, as they're often longer/more annoying to type changelog: [`box_default`]: Move to style r? `@llogiq`
2 parents 797d50d + 0f63fa8 commit cb87a57

File tree

4 files changed

+122
-193
lines changed

4 files changed

+122
-193
lines changed

clippy_lints/src/box_default.rs

+8-43
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use clippy_utils::diagnostics::span_lint_and_sugg;
22
use clippy_utils::macros::macro_backtrace;
3-
use clippy_utils::source::snippet_opt;
43
use clippy_utils::ty::expr_sig;
54
use clippy_utils::{is_default_equivalent, path_def_id};
65
use rustc_errors::Applicability;
@@ -9,20 +8,16 @@ use rustc_hir::intravisit::{walk_ty, Visitor};
98
use rustc_hir::{Block, Expr, ExprKind, Local, Node, QPath, Ty, TyKind};
109
use rustc_lint::{LateContext, LateLintPass, LintContext};
1110
use rustc_middle::lint::in_external_macro;
12-
use rustc_middle::ty::print::with_forced_trimmed_paths;
13-
use rustc_middle::ty::IsSuggestable;
1411
use rustc_session::declare_lint_pass;
1512
use rustc_span::sym;
1613

1714
declare_clippy_lint! {
1815
/// ### What it does
19-
/// checks for `Box::new(T::default())`, which is better written as
20-
/// `Box::<T>::default()`.
16+
/// checks for `Box::new(Default::default())`, which can be written as
17+
/// `Box::default()`.
2118
///
2219
/// ### Why is this bad?
23-
/// First, it's more complex, involving two calls instead of one.
24-
/// Second, `Box::default()` can be faster
25-
/// [in certain cases](https://nnethercote.github.io/perf-book/standard-library-types.html#box).
20+
/// `Box::default()` is equivalent and more concise.
2621
///
2722
/// ### Example
2823
/// ```no_run
@@ -34,7 +29,7 @@ declare_clippy_lint! {
3429
/// ```
3530
#[clippy::version = "1.66.0"]
3631
pub BOX_DEFAULT,
37-
perf,
32+
style,
3833
"Using Box::new(T::default()) instead of Box::default()"
3934
}
4035

@@ -53,38 +48,22 @@ impl LateLintPass<'_> for BoxDefault {
5348
&& path_def_id(cx, ty).map_or(false, |id| Some(id) == cx.tcx.lang_items().owned_box())
5449
// And the single argument to the call is another function call
5550
// This is the `T::default()` of `Box::new(T::default())`
56-
&& let ExprKind::Call(arg_path, inner_call_args) = arg.kind
51+
&& let ExprKind::Call(arg_path, _) = arg.kind
5752
// And we are not in a foreign crate's macro
5853
&& !in_external_macro(cx.sess(), expr.span)
5954
// And the argument expression has the same context as the outer call expression
6055
// or that we are inside a `vec!` macro expansion
6156
&& (expr.span.eq_ctxt(arg.span) || is_local_vec_expn(cx, arg, expr))
62-
// And the argument is equivalent to `Default::default()`
63-
&& is_default_equivalent(cx, arg)
57+
// And the argument is `Default::default()` or the type is specified
58+
&& (is_plain_default(cx, arg_path) || (given_type(cx, expr) && is_default_equivalent(cx, arg)))
6459
{
6560
span_lint_and_sugg(
6661
cx,
6762
BOX_DEFAULT,
6863
expr.span,
6964
"`Box::new(_)` of default value",
7065
"try",
71-
if is_plain_default(cx, arg_path) || given_type(cx, expr) {
72-
"Box::default()".into()
73-
} else if let Some(arg_ty) = cx.typeck_results().expr_ty(arg).make_suggestable(cx.tcx, true) {
74-
// Check if we can copy from the source expression in the replacement.
75-
// We need the call to have no argument (see `explicit_default_type`).
76-
if inner_call_args.is_empty()
77-
&& let Some(ty) = explicit_default_type(arg_path)
78-
&& let Some(s) = snippet_opt(cx, ty.span)
79-
{
80-
format!("Box::<{s}>::default()")
81-
} else {
82-
// Otherwise, use the inferred type's formatting.
83-
with_forced_trimmed_paths!(format!("Box::<{arg_ty}>::default()"))
84-
}
85-
} else {
86-
return;
87-
},
66+
"Box::default()".into(),
8867
Applicability::MachineApplicable,
8968
);
9069
}
@@ -103,20 +82,6 @@ fn is_plain_default(cx: &LateContext<'_>, arg_path: &Expr<'_>) -> bool {
10382
}
10483
}
10584

106-
// Checks whether the call is of the form `A::B::f()`. Returns `A::B` if it is.
107-
//
108-
// In the event we have this kind of construct, it's easy to use `A::B` as a replacement in the
109-
// quickfix. `f` must however have no parameter. Should `f` have some, then some of the type of
110-
// `A::B` may be inferred from the arguments. This would be the case for `Vec::from([0; false])`,
111-
// where the argument to `from` allows inferring this is a `Vec<bool>`
112-
fn explicit_default_type<'a>(arg_path: &'a Expr<'_>) -> Option<&'a Ty<'a>> {
113-
if let ExprKind::Path(QPath::TypeRelative(ty, _)) = &arg_path.kind {
114-
Some(ty)
115-
} else {
116-
None
117-
}
118-
}
119-
12085
fn is_local_vec_expn(cx: &LateContext<'_>, expr: &Expr<'_>, ref_expr: &Expr<'_>) -> bool {
12186
macro_backtrace(expr.span).next().map_or(false, |call| {
12287
cx.tcx.is_diagnostic_item(sym::vec_macro, call.def_id) && call.span.eq_ctxt(ref_expr.span)

tests/ui/box_default.fixed

+47-38
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![warn(clippy::box_default)]
2-
#![allow(clippy::default_constructed_unit_structs)]
2+
#![allow(clippy::boxed_local, clippy::default_constructed_unit_structs)]
33

44
#[derive(Default)]
55
struct ImplementsDefault;
@@ -12,26 +12,50 @@ impl OwnDefault {
1212
}
1313
}
1414

15-
macro_rules! outer {
16-
($e: expr) => {
17-
$e
15+
macro_rules! default {
16+
() => {
17+
Default::default()
18+
};
19+
}
20+
21+
macro_rules! string_new {
22+
() => {
23+
String::new()
24+
};
25+
}
26+
27+
macro_rules! box_new {
28+
($e:expr) => {
29+
Box::new($e)
1830
};
1931
}
2032

2133
fn main() {
22-
let _string: Box<String> = Box::default();
23-
let _byte = Box::<u8>::default();
24-
let _vec = Box::<Vec::<u8>>::default();
25-
let _impl = Box::<ImplementsDefault>::default();
26-
let _impl2 = Box::<ImplementsDefault>::default();
27-
let _impl3: Box<ImplementsDefault> = Box::default();
28-
let _own = Box::new(OwnDefault::default()); // should not lint
29-
let _in_macro = outer!(Box::<String>::default());
30-
let _string_default = outer!(Box::<String>::default());
31-
let _vec2: Box<Vec<ImplementsDefault>> = Box::default();
32-
let _vec3: Box<Vec<bool>> = Box::default();
33-
let _vec4: Box<_> = Box::<Vec<bool>>::default();
34-
let _more = ret_ty_fn();
34+
let string1: Box<String> = Box::default();
35+
let string2: Box<String> = Box::default();
36+
let impl1: Box<ImplementsDefault> = Box::default();
37+
let vec: Box<Vec<u8>> = Box::default();
38+
let byte: Box<u8> = Box::default();
39+
let vec2: Box<Vec<ImplementsDefault>> = Box::default();
40+
let vec3: Box<Vec<bool>> = Box::default();
41+
42+
let plain_default = Box::default();
43+
let _: Box<String> = plain_default;
44+
45+
let _: Box<String> = Box::new(default!());
46+
let _: Box<String> = Box::new(string_new!());
47+
let _: Box<String> = box_new!(Default::default());
48+
let _: Box<String> = box_new!(String::new());
49+
let _: Box<String> = box_new!(default!());
50+
let _: Box<String> = box_new!(string_new!());
51+
52+
let own: Box<OwnDefault> = Box::new(OwnDefault::default()); // should not lint
53+
54+
// Do not suggest where a turbofish would be required
55+
let impl2 = Box::new(ImplementsDefault::default());
56+
let impl3 = Box::new(<ImplementsDefault as Default>::default());
57+
let vec4: Box<_> = Box::new(Vec::from([false; 0]));
58+
let more = ret_ty_fn();
3559
call_ty_fn(Box::default());
3660
issue_10381();
3761

@@ -44,10 +68,9 @@ fn main() {
4468
}
4569

4670
fn ret_ty_fn() -> Box<bool> {
47-
Box::<bool>::default()
71+
Box::new(bool::default()) // Could lint, currently doesn't
4872
}
4973

50-
#[allow(clippy::boxed_local)]
5174
fn call_ty_fn(_b: Box<u8>) {
5275
issue_9621_dyn_trait();
5376
}
@@ -61,7 +84,7 @@ impl Read for ImplementsDefault {
6184
}
6285

6386
fn issue_9621_dyn_trait() {
64-
let _: Box<dyn Read> = Box::<ImplementsDefault>::default();
87+
let _: Box<dyn Read> = Box::new(ImplementsDefault::default());
6588
issue_10089();
6689
}
6790

@@ -70,7 +93,7 @@ fn issue_10089() {
7093
#[derive(Default)]
7194
struct WeirdPathed;
7295

73-
let _ = Box::<WeirdPathed>::default();
96+
let _ = Box::new(WeirdPathed::default());
7497
};
7598
}
7699

@@ -82,7 +105,7 @@ fn issue_10381() {
82105

83106
fn maybe_get_bar(i: u32) -> Option<Box<dyn Bar>> {
84107
if i % 2 == 0 {
85-
Some(Box::<Foo>::default())
108+
Some(Box::new(Foo::default()))
86109
} else {
87110
None
88111
}
@@ -91,20 +114,6 @@ fn issue_10381() {
91114
assert!(maybe_get_bar(2).is_some());
92115
}
93116

94-
#[allow(unused)]
95-
fn issue_11868() {
96-
fn foo(_: &mut Vec<usize>) {}
97-
98-
macro_rules! bar {
99-
($baz:expr) => {
100-
Box::leak(Box::new($baz))
101-
};
102-
}
103-
104-
foo(bar!(vec![]));
105-
foo(bar!(vec![1]));
106-
}
107-
108117
// Issue #11927: The quickfix for the `Box::new` suggests replacing with `Box::<Inner>::default()`,
109118
// removing the `outer::` segment.
110119
fn issue_11927() {
@@ -116,7 +125,7 @@ fn issue_11927() {
116125
}
117126

118127
fn foo() {
119-
let _b = Box::<outer::Inner>::default();
120-
let _b = Box::<std::collections::HashSet::<i32>>::default();
128+
let _b = Box::new(outer::Inner::default());
129+
let _b = Box::new(std::collections::HashSet::<i32>::new());
121130
}
122131
}

tests/ui/box_default.rs

+42-33
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#![warn(clippy::box_default)]
2-
#![allow(clippy::default_constructed_unit_structs)]
2+
#![allow(clippy::boxed_local, clippy::default_constructed_unit_structs)]
33

44
#[derive(Default)]
55
struct ImplementsDefault;
@@ -12,26 +12,50 @@ impl OwnDefault {
1212
}
1313
}
1414

15-
macro_rules! outer {
16-
($e: expr) => {
17-
$e
15+
macro_rules! default {
16+
() => {
17+
Default::default()
18+
};
19+
}
20+
21+
macro_rules! string_new {
22+
() => {
23+
String::new()
24+
};
25+
}
26+
27+
macro_rules! box_new {
28+
($e:expr) => {
29+
Box::new($e)
1830
};
1931
}
2032

2133
fn main() {
22-
let _string: Box<String> = Box::new(Default::default());
23-
let _byte = Box::new(u8::default());
24-
let _vec = Box::new(Vec::<u8>::new());
25-
let _impl = Box::new(ImplementsDefault::default());
26-
let _impl2 = Box::new(<ImplementsDefault as Default>::default());
27-
let _impl3: Box<ImplementsDefault> = Box::new(Default::default());
28-
let _own = Box::new(OwnDefault::default()); // should not lint
29-
let _in_macro = outer!(Box::new(String::new()));
30-
let _string_default = outer!(Box::new(String::from("")));
31-
let _vec2: Box<Vec<ImplementsDefault>> = Box::new(vec![]);
32-
let _vec3: Box<Vec<bool>> = Box::new(Vec::from([]));
33-
let _vec4: Box<_> = Box::new(Vec::from([false; 0]));
34-
let _more = ret_ty_fn();
34+
let string1: Box<String> = Box::new(Default::default());
35+
let string2: Box<String> = Box::new(String::new());
36+
let impl1: Box<ImplementsDefault> = Box::new(Default::default());
37+
let vec: Box<Vec<u8>> = Box::new(Vec::new());
38+
let byte: Box<u8> = Box::new(u8::default());
39+
let vec2: Box<Vec<ImplementsDefault>> = Box::new(vec![]);
40+
let vec3: Box<Vec<bool>> = Box::new(Vec::from([]));
41+
42+
let plain_default = Box::new(Default::default());
43+
let _: Box<String> = plain_default;
44+
45+
let _: Box<String> = Box::new(default!());
46+
let _: Box<String> = Box::new(string_new!());
47+
let _: Box<String> = box_new!(Default::default());
48+
let _: Box<String> = box_new!(String::new());
49+
let _: Box<String> = box_new!(default!());
50+
let _: Box<String> = box_new!(string_new!());
51+
52+
let own: Box<OwnDefault> = Box::new(OwnDefault::default()); // should not lint
53+
54+
// Do not suggest where a turbofish would be required
55+
let impl2 = Box::new(ImplementsDefault::default());
56+
let impl3 = Box::new(<ImplementsDefault as Default>::default());
57+
let vec4: Box<_> = Box::new(Vec::from([false; 0]));
58+
let more = ret_ty_fn();
3559
call_ty_fn(Box::new(u8::default()));
3660
issue_10381();
3761

@@ -44,10 +68,9 @@ fn main() {
4468
}
4569

4670
fn ret_ty_fn() -> Box<bool> {
47-
Box::new(bool::default())
71+
Box::new(bool::default()) // Could lint, currently doesn't
4872
}
4973

50-
#[allow(clippy::boxed_local)]
5174
fn call_ty_fn(_b: Box<u8>) {
5275
issue_9621_dyn_trait();
5376
}
@@ -91,20 +114,6 @@ fn issue_10381() {
91114
assert!(maybe_get_bar(2).is_some());
92115
}
93116

94-
#[allow(unused)]
95-
fn issue_11868() {
96-
fn foo(_: &mut Vec<usize>) {}
97-
98-
macro_rules! bar {
99-
($baz:expr) => {
100-
Box::leak(Box::new($baz))
101-
};
102-
}
103-
104-
foo(bar!(vec![]));
105-
foo(bar!(vec![1]));
106-
}
107-
108117
// Issue #11927: The quickfix for the `Box::new` suggests replacing with `Box::<Inner>::default()`,
109118
// removing the `outer::` segment.
110119
fn issue_11927() {

0 commit comments

Comments
 (0)