Skip to content

Commit 4e9aebf

Browse files
Implement clippy::manual_empty_string_creation lint
1 parent 4d5d191 commit 4e9aebf

10 files changed

+308
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3828,6 +3828,7 @@ Released 2018-09-13
38283828
[`manual_assert`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_assert
38293829
[`manual_async_fn`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_async_fn
38303830
[`manual_bits`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_bits
3831+
[`manual_empty_string_creation`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_empty_string_creation
38313832
[`manual_filter_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_filter_map
38323833
[`manual_find`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_find
38333834
[`manual_find_map`]: https://rust-lang.github.io/rust-clippy/master/index.html#manual_find_map

clippy_lints/src/lib.register_all.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ store.register_group(true, "clippy::all", Some("clippy_all"), vec![
124124
LintId::of(main_recursion::MAIN_RECURSION),
125125
LintId::of(manual_async_fn::MANUAL_ASYNC_FN),
126126
LintId::of(manual_bits::MANUAL_BITS),
127+
LintId::of(manual_empty_string_creation::MANUAL_EMPTY_STRING_CREATION),
127128
LintId::of(manual_non_exhaustive::MANUAL_NON_EXHAUSTIVE),
128129
LintId::of(manual_rem_euclid::MANUAL_REM_EUCLID),
129130
LintId::of(manual_retain::MANUAL_RETAIN),

clippy_lints/src/lib.register_lints.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ store.register_lints(&[
244244
manual_assert::MANUAL_ASSERT,
245245
manual_async_fn::MANUAL_ASYNC_FN,
246246
manual_bits::MANUAL_BITS,
247+
manual_empty_string_creation::MANUAL_EMPTY_STRING_CREATION,
247248
manual_instant_elapsed::MANUAL_INSTANT_ELAPSED,
248249
manual_non_exhaustive::MANUAL_NON_EXHAUSTIVE,
249250
manual_ok_or::MANUAL_OK_OR,

clippy_lints/src/lib.register_style.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ store.register_group(true, "clippy::style", Some("clippy_style"), vec![
4444
LintId::of(main_recursion::MAIN_RECURSION),
4545
LintId::of(manual_async_fn::MANUAL_ASYNC_FN),
4646
LintId::of(manual_bits::MANUAL_BITS),
47+
LintId::of(manual_empty_string_creation::MANUAL_EMPTY_STRING_CREATION),
4748
LintId::of(manual_non_exhaustive::MANUAL_NON_EXHAUSTIVE),
4849
LintId::of(map_clone::MAP_CLONE),
4950
LintId::of(match_result_ok::MATCH_RESULT_OK),

clippy_lints/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,6 +273,7 @@ mod main_recursion;
273273
mod manual_assert;
274274
mod manual_async_fn;
275275
mod manual_bits;
276+
mod manual_empty_string_creation;
276277
mod manual_instant_elapsed;
277278
mod manual_non_exhaustive;
278279
mod manual_ok_or;
@@ -933,6 +934,7 @@ pub fn register_plugins(store: &mut rustc_lint::LintStore, sess: &Session, conf:
933934
store.register_late_pass(|| Box::new(std_instead_of_core::StdReexports::default()));
934935
store.register_late_pass(|| Box::new(manual_instant_elapsed::ManualInstantElapsed));
935936
store.register_late_pass(|| Box::new(partialeq_to_none::PartialeqToNone));
937+
store.register_late_pass(|| Box::new(manual_empty_string_creation::ManualEmptyStringCreation));
936938
// add lints here, do not remove this comment, it's used in `new_lint`
937939
}
938940

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
use clippy_utils::diagnostics::span_lint_and_sugg;
2+
use rustc_ast::LitKind;
3+
use rustc_errors::Applicability::MachineApplicable;
4+
use rustc_hir::{Expr, ExprKind, PathSegment, QPath, TyKind};
5+
use rustc_lint::{LateContext, LateLintPass};
6+
use rustc_middle::ty;
7+
use rustc_session::{declare_lint_pass, declare_tool_lint};
8+
use rustc_span::{sym, symbol, Span};
9+
10+
declare_clippy_lint! {
11+
/// ### What it does
12+
///
13+
/// Checks for usage of `""` to create a `String`, such as `"".to_string()`, `"".to_owned()`,
14+
/// `String::from("")` and others.
15+
///
16+
/// ### Why is this bad?
17+
///
18+
/// Different ways of creating an empty string makes your code less standardized, which can
19+
/// be confusing.
20+
///
21+
/// ### Example
22+
/// ```rust
23+
/// let a = "".to_string();
24+
/// let b: String = "".into();
25+
/// ```
26+
/// Use instead:
27+
/// ```rust
28+
/// let a = String::new();
29+
/// let b = String::new();
30+
/// ```
31+
#[clippy::version = "1.65.0"]
32+
pub MANUAL_EMPTY_STRING_CREATION,
33+
style,
34+
"empty String is being created manually"
35+
}
36+
declare_lint_pass!(ManualEmptyStringCreation => [MANUAL_EMPTY_STRING_CREATION]);
37+
38+
impl LateLintPass<'_> for ManualEmptyStringCreation {
39+
fn check_expr(&mut self, cx: &LateContext<'_>, expr: &Expr<'_>) {
40+
if expr.span.from_expansion() {
41+
return;
42+
}
43+
44+
let ty = cx.typeck_results().expr_ty(expr);
45+
match ty.kind() {
46+
ty::Adt(adt_def, _) if adt_def.is_struct() => {
47+
if !cx.tcx.is_diagnostic_item(sym::String, adt_def.did()) {
48+
return;
49+
}
50+
},
51+
_ => return,
52+
}
53+
54+
match expr.kind {
55+
ExprKind::Call(func, args) => {
56+
parse_call(cx, expr.span, func, args);
57+
},
58+
ExprKind::MethodCall(path_segment, args, _) => {
59+
parse_method_call(cx, expr.span, path_segment, args);
60+
},
61+
_ => (),
62+
}
63+
}
64+
}
65+
66+
/// Checks if an expression's kind corresponds to an empty &str.
67+
fn is_expr_kind_empty_str(expr_kind: &ExprKind<'_>) -> bool {
68+
if let ExprKind::Lit(lit) = expr_kind &&
69+
let LitKind::Str(value, _) = lit.node &&
70+
value == symbol::kw::Empty
71+
{
72+
return true;
73+
}
74+
75+
false
76+
}
77+
78+
/// Emits the `MANUAL_EMPTY_STRING_CREATION` warning and suggests the appropriate fix.
79+
fn warn_then_suggest(cx: &LateContext<'_>, span: Span) {
80+
span_lint_and_sugg(
81+
cx,
82+
MANUAL_EMPTY_STRING_CREATION,
83+
span,
84+
"empty String is being created manually",
85+
"consider using",
86+
"String::new()".into(),
87+
MachineApplicable,
88+
);
89+
}
90+
91+
/// Tries to parse an expression as a method call, emiting the warning if necessary.
92+
fn parse_method_call(cx: &LateContext<'_>, span: Span, path_segment: &PathSegment<'_>, args: &[Expr<'_>]) {
93+
if args.is_empty() {
94+
// When parsing TryFrom::try_from(...).expect(...), we will have more than 1 arg.
95+
return;
96+
}
97+
98+
let ident = path_segment.ident.as_str();
99+
let method_arg_kind = &args[0].kind;
100+
if ["to_string", "to_owned", "into"].contains(&ident) && is_expr_kind_empty_str(method_arg_kind) {
101+
warn_then_suggest(cx, span);
102+
} else if let ExprKind::Call(func, args) = method_arg_kind {
103+
// If our first argument is a function call itself, it could be an `unwrap`-like function.
104+
// E.g. String::try_from("hello").unwrap(), TryFrom::try_from("").expect("hello"), etc.
105+
parse_call(cx, span, func, args);
106+
}
107+
}
108+
109+
/// Tries to parse an expression as a function call, emiting the warning if necessary.
110+
fn parse_call(cx: &LateContext<'_>, span: Span, func: &Expr<'_>, args: &[Expr<'_>]) {
111+
if args.len() != 1 {
112+
return;
113+
}
114+
115+
let arg_kind = &args[0].kind;
116+
if let ExprKind::Path(qpath) = &func.kind {
117+
if let QPath::TypeRelative(_, _) = qpath {
118+
// String::from(...) or String::try_from(...)
119+
if let QPath::TypeRelative(ty, path_seg) = qpath &&
120+
[sym::from, sym::try_from].contains(&path_seg.ident.name) &&
121+
let TyKind::Path(qpath) = &ty.kind &&
122+
let QPath::Resolved(_, path) = qpath &&
123+
let [path_seg] = path.segments &&
124+
path_seg.ident.name == sym::String &&
125+
is_expr_kind_empty_str(arg_kind)
126+
{
127+
warn_then_suggest(cx, span);
128+
}
129+
} else if let QPath::Resolved(_, path) = qpath {
130+
// From::from(...) or TryFrom::try_from(...)
131+
if let [path_seg1, path_seg2] = path.segments &&
132+
is_expr_kind_empty_str(arg_kind) && (
133+
(path_seg1.ident.name == sym::From && path_seg2.ident.name == sym::from) ||
134+
(path_seg1.ident.name == sym::TryFrom && path_seg2.ident.name == sym::try_from)
135+
)
136+
{
137+
warn_then_suggest(cx, span);
138+
}
139+
}
140+
}
141+
}

clippy_utils/src/msrvs.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ msrv_aliases! {
3232
1,30,0 { ITERATOR_FIND_MAP, TOOL_ATTRIBUTES }
3333
1,28,0 { FROM_BOOL }
3434
1,26,0 { RANGE_INCLUSIVE, STRING_RETAIN }
35+
1,24,0 { IS_ASCII_DIGIT }
3536
1,18,0 { HASH_MAP_RETAIN, HASH_SET_RETAIN }
3637
1,17,0 { FIELD_INIT_SHORTHAND, STATIC_IN_CONST, EXPECT_ERR }
3738
1,16,0 { STR_REPEAT }
38-
1,24,0 { IS_ASCII_DIGIT }
3939
}
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
// run-rustfix
2+
3+
#![warn(clippy::manual_empty_string_creation)]
4+
5+
fn main() {
6+
// Method calls
7+
let _ = String::new();
8+
let _ = "no warning".to_string();
9+
10+
let _ = String::new();
11+
let _ = "no warning".to_owned();
12+
13+
let _: String = String::new();
14+
let _: String = "no warning".into();
15+
16+
let _: SomeOtherStruct = "no warning".into();
17+
let _: SomeOtherStruct = "".into(); // No warning too. We are not converting into String.
18+
19+
// Calls
20+
let _ = String::new();
21+
let _ = String::new();
22+
let _ = String::from("no warning");
23+
let _ = SomeOtherStruct::from("no warning");
24+
let _ = SomeOtherStruct::from(""); // Again: no warning.
25+
26+
let _ = String::new();
27+
let _ = String::try_from("no warning").unwrap();
28+
let _ = String::try_from("no warning").expect("this should not warn");
29+
let _ = SomeOtherStruct::try_from("no warning").unwrap();
30+
let _ = SomeOtherStruct::try_from("").unwrap(); // Again: no warning.
31+
32+
let _: String = String::new();
33+
let _: String = From::from("no warning");
34+
let _: SomeOtherStruct = From::from("no warning");
35+
let _: SomeOtherStruct = From::from(""); // Again: no warning.
36+
37+
let _: String = String::new();
38+
let _: String = TryFrom::try_from("no warning").unwrap();
39+
let _: String = TryFrom::try_from("no warning").expect("this should not warn");
40+
let _: String = String::new();
41+
let _: SomeOtherStruct = TryFrom::try_from("no_warning").unwrap();
42+
let _: SomeOtherStruct = TryFrom::try_from("").unwrap(); // Again: no warning.
43+
}
44+
45+
struct SomeOtherStruct {}
46+
47+
impl From<&str> for SomeOtherStruct {
48+
fn from(_value: &str) -> Self {
49+
Self {}
50+
}
51+
}
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
// run-rustfix
2+
3+
#![warn(clippy::manual_empty_string_creation)]
4+
5+
fn main() {
6+
// Method calls
7+
let _ = "".to_string();
8+
let _ = "no warning".to_string();
9+
10+
let _ = "".to_owned();
11+
let _ = "no warning".to_owned();
12+
13+
let _: String = "".into();
14+
let _: String = "no warning".into();
15+
16+
let _: SomeOtherStruct = "no warning".into();
17+
let _: SomeOtherStruct = "".into(); // No warning too. We are not converting into String.
18+
19+
// Calls
20+
let _ = String::from("");
21+
let _ = <String>::from("");
22+
let _ = String::from("no warning");
23+
let _ = SomeOtherStruct::from("no warning");
24+
let _ = SomeOtherStruct::from(""); // Again: no warning.
25+
26+
let _ = String::try_from("").unwrap();
27+
let _ = String::try_from("no warning").unwrap();
28+
let _ = String::try_from("no warning").expect("this should not warn");
29+
let _ = SomeOtherStruct::try_from("no warning").unwrap();
30+
let _ = SomeOtherStruct::try_from("").unwrap(); // Again: no warning.
31+
32+
let _: String = From::from("");
33+
let _: String = From::from("no warning");
34+
let _: SomeOtherStruct = From::from("no warning");
35+
let _: SomeOtherStruct = From::from(""); // Again: no warning.
36+
37+
let _: String = TryFrom::try_from("").unwrap();
38+
let _: String = TryFrom::try_from("no warning").unwrap();
39+
let _: String = TryFrom::try_from("no warning").expect("this should not warn");
40+
let _: String = TryFrom::try_from("").expect("this should warn");
41+
let _: SomeOtherStruct = TryFrom::try_from("no_warning").unwrap();
42+
let _: SomeOtherStruct = TryFrom::try_from("").unwrap(); // Again: no warning.
43+
}
44+
45+
struct SomeOtherStruct {}
46+
47+
impl From<&str> for SomeOtherStruct {
48+
fn from(_value: &str) -> Self {
49+
Self {}
50+
}
51+
}
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
error: empty String is being created manually
2+
--> $DIR/manual_empty_string_creation.rs:7:13
3+
|
4+
LL | let _ = "".to_string();
5+
| ^^^^^^^^^^^^^^ help: consider using: `String::new()`
6+
|
7+
= note: `-D clippy::manual-empty-string-creation` implied by `-D warnings`
8+
9+
error: empty String is being created manually
10+
--> $DIR/manual_empty_string_creation.rs:10:13
11+
|
12+
LL | let _ = "".to_owned();
13+
| ^^^^^^^^^^^^^ help: consider using: `String::new()`
14+
15+
error: empty String is being created manually
16+
--> $DIR/manual_empty_string_creation.rs:13:21
17+
|
18+
LL | let _: String = "".into();
19+
| ^^^^^^^^^ help: consider using: `String::new()`
20+
21+
error: empty String is being created manually
22+
--> $DIR/manual_empty_string_creation.rs:20:13
23+
|
24+
LL | let _ = String::from("");
25+
| ^^^^^^^^^^^^^^^^ help: consider using: `String::new()`
26+
27+
error: empty String is being created manually
28+
--> $DIR/manual_empty_string_creation.rs:21:13
29+
|
30+
LL | let _ = <String>::from("");
31+
| ^^^^^^^^^^^^^^^^^^ help: consider using: `String::new()`
32+
33+
error: empty String is being created manually
34+
--> $DIR/manual_empty_string_creation.rs:26:13
35+
|
36+
LL | let _ = String::try_from("").unwrap();
37+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `String::new()`
38+
39+
error: empty String is being created manually
40+
--> $DIR/manual_empty_string_creation.rs:32:21
41+
|
42+
LL | let _: String = From::from("");
43+
| ^^^^^^^^^^^^^^ help: consider using: `String::new()`
44+
45+
error: empty String is being created manually
46+
--> $DIR/manual_empty_string_creation.rs:37:21
47+
|
48+
LL | let _: String = TryFrom::try_from("").unwrap();
49+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `String::new()`
50+
51+
error: empty String is being created manually
52+
--> $DIR/manual_empty_string_creation.rs:40:21
53+
|
54+
LL | let _: String = TryFrom::try_from("").expect("this should warn");
55+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using: `String::new()`
56+
57+
error: aborting due to 9 previous errors
58+

0 commit comments

Comments
 (0)