]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/clippy_lints/src/repeat_once.rs
New upstream version 1.60.0+dfsg1
[rustc.git] / src / tools / clippy / clippy_lints / src / repeat_once.rs
1 use clippy_utils::consts::{constant_context, Constant};
2 use clippy_utils::diagnostics::span_lint_and_sugg;
3 use clippy_utils::source::snippet;
4 use clippy_utils::ty::is_type_diagnostic_item;
5 use if_chain::if_chain;
6 use rustc_errors::Applicability;
7 use rustc_hir::{Expr, ExprKind};
8 use rustc_lint::{LateContext, LateLintPass};
9 use rustc_session::{declare_lint_pass, declare_tool_lint};
10 use rustc_span::sym;
11
12 declare_clippy_lint! {
13 /// ### What it does
14 /// Checks for usage of `.repeat(1)` and suggest the following method for each types.
15 /// - `.to_string()` for `str`
16 /// - `.clone()` for `String`
17 /// - `.to_vec()` for `slice`
18 ///
19 /// The lint will evaluate constant expressions and values as arguments of `.repeat(..)` and emit a message if
20 /// they are equivalent to `1`. (Related discussion in [rust-clippy#7306](https://github.com/rust-lang/rust-clippy/issues/7306))
21 ///
22 /// ### Why is this bad?
23 /// For example, `String.repeat(1)` is equivalent to `.clone()`. If cloning
24 /// the string is the intention behind this, `clone()` should be used.
25 ///
26 /// ### Example
27 /// ```rust
28 /// fn main() {
29 /// let x = String::from("hello world").repeat(1);
30 /// }
31 /// ```
32 /// Use instead:
33 /// ```rust
34 /// fn main() {
35 /// let x = String::from("hello world").clone();
36 /// }
37 /// ```
38 #[clippy::version = "1.47.0"]
39 pub REPEAT_ONCE,
40 complexity,
41 "using `.repeat(1)` instead of `String.clone()`, `str.to_string()` or `slice.to_vec()` "
42 }
43
44 declare_lint_pass!(RepeatOnce => [REPEAT_ONCE]);
45
46 impl<'tcx> LateLintPass<'tcx> for RepeatOnce {
47 fn check_expr(&mut self, cx: &LateContext<'_>, expr: &'tcx Expr<'_>) {
48 if_chain! {
49 if let ExprKind::MethodCall(path, [receiver, count], _) = &expr.kind;
50 if path.ident.name == sym!(repeat);
51 if constant_context(cx, cx.typeck_results()).expr(count) == Some(Constant::Int(1));
52 if !receiver.span.from_expansion();
53 then {
54 let ty = cx.typeck_results().expr_ty(receiver).peel_refs();
55 if ty.is_str() {
56 span_lint_and_sugg(
57 cx,
58 REPEAT_ONCE,
59 expr.span,
60 "calling `repeat(1)` on str",
61 "consider using `.to_string()` instead",
62 format!("{}.to_string()", snippet(cx, receiver.span, r#""...""#)),
63 Applicability::MachineApplicable,
64 );
65 } else if ty.builtin_index().is_some() {
66 span_lint_and_sugg(
67 cx,
68 REPEAT_ONCE,
69 expr.span,
70 "calling `repeat(1)` on slice",
71 "consider using `.to_vec()` instead",
72 format!("{}.to_vec()", snippet(cx, receiver.span, r#""...""#)),
73 Applicability::MachineApplicable,
74 );
75 } else if is_type_diagnostic_item(cx, ty, sym::String) {
76 span_lint_and_sugg(
77 cx,
78 REPEAT_ONCE,
79 expr.span,
80 "calling `repeat(1)` on a string literal",
81 "consider using `.clone()` instead",
82 format!("{}.clone()", snippet(cx, receiver.span, r#""...""#)),
83 Applicability::MachineApplicable,
84 );
85 }
86 }
87 }
88 }
89 }