]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/len_zero.rs
feat(rustdoc): open sidebar menu when links inside it are focused
[rust.git] / src / tools / clippy / clippy_lints / src / len_zero.rs
1 use clippy_utils::diagnostics::{span_lint, span_lint_and_sugg, span_lint_and_then};
2 use clippy_utils::source::snippet_with_applicability;
3 use clippy_utils::{get_item_name, get_parent_as_impl, is_allowed};
4 use if_chain::if_chain;
5 use rustc_ast::ast::LitKind;
6 use rustc_errors::Applicability;
7 use rustc_hir::def_id::DefIdSet;
8 use rustc_hir::{
9     def_id::DefId, AssocItemKind, BinOpKind, Expr, ExprKind, FnRetTy, ImplItem, ImplItemKind, ImplicitSelfKind, Item,
10     ItemKind, Mutability, Node, TraitItemRef, TyKind,
11 };
12 use rustc_lint::{LateContext, LateLintPass};
13 use rustc_middle::ty::{self, AssocKind, FnSig, Ty, TyS};
14 use rustc_session::{declare_lint_pass, declare_tool_lint};
15 use rustc_span::{
16     source_map::{Span, Spanned, Symbol},
17     symbol::sym,
18 };
19
20 declare_clippy_lint! {
21     /// **What it does:** Checks for getting the length of something via `.len()`
22     /// just to compare to zero, and suggests using `.is_empty()` where applicable.
23     ///
24     /// **Why is this bad?** Some structures can answer `.is_empty()` much faster
25     /// than calculating their length. So it is good to get into the habit of using
26     /// `.is_empty()`, and having it is cheap.
27     /// Besides, it makes the intent clearer than a manual comparison in some contexts.
28     ///
29     /// **Known problems:** None.
30     ///
31     /// **Example:**
32     /// ```ignore
33     /// if x.len() == 0 {
34     ///     ..
35     /// }
36     /// if y.len() != 0 {
37     ///     ..
38     /// }
39     /// ```
40     /// instead use
41     /// ```ignore
42     /// if x.is_empty() {
43     ///     ..
44     /// }
45     /// if !y.is_empty() {
46     ///     ..
47     /// }
48     /// ```
49     pub LEN_ZERO,
50     style,
51     "checking `.len() == 0` or `.len() > 0` (or similar) when `.is_empty()` could be used instead"
52 }
53
54 declare_clippy_lint! {
55     /// **What it does:** Checks for items that implement `.len()` but not
56     /// `.is_empty()`.
57     ///
58     /// **Why is this bad?** It is good custom to have both methods, because for
59     /// some data structures, asking about the length will be a costly operation,
60     /// whereas `.is_empty()` can usually answer in constant time. Also it used to
61     /// lead to false positives on the [`len_zero`](#len_zero) lint – currently that
62     /// lint will ignore such entities.
63     ///
64     /// **Known problems:** None.
65     ///
66     /// **Example:**
67     /// ```ignore
68     /// impl X {
69     ///     pub fn len(&self) -> usize {
70     ///         ..
71     ///     }
72     /// }
73     /// ```
74     pub LEN_WITHOUT_IS_EMPTY,
75     style,
76     "traits or impls with a public `len` method but no corresponding `is_empty` method"
77 }
78
79 declare_clippy_lint! {
80     /// **What it does:** Checks for comparing to an empty slice such as `""` or `[]`,
81     /// and suggests using `.is_empty()` where applicable.
82     ///
83     /// **Why is this bad?** Some structures can answer `.is_empty()` much faster
84     /// than checking for equality. So it is good to get into the habit of using
85     /// `.is_empty()`, and having it is cheap.
86     /// Besides, it makes the intent clearer than a manual comparison in some contexts.
87     ///
88     /// **Known problems:** None.
89     ///
90     /// **Example:**
91     ///
92     /// ```ignore
93     /// if s == "" {
94     ///     ..
95     /// }
96     ///
97     /// if arr == [] {
98     ///     ..
99     /// }
100     /// ```
101     /// Use instead:
102     /// ```ignore
103     /// if s.is_empty() {
104     ///     ..
105     /// }
106     ///
107     /// if arr.is_empty() {
108     ///     ..
109     /// }
110     /// ```
111     pub COMPARISON_TO_EMPTY,
112     style,
113     "checking `x == \"\"` or `x == []` (or similar) when `.is_empty()` could be used instead"
114 }
115
116 declare_lint_pass!(LenZero => [LEN_ZERO, LEN_WITHOUT_IS_EMPTY, COMPARISON_TO_EMPTY]);
117
118 impl<'tcx> LateLintPass<'tcx> for LenZero {
119     fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'_>) {
120         if item.span.from_expansion() {
121             return;
122         }
123
124         if let ItemKind::Trait(_, _, _, _, trait_items) = item.kind {
125             check_trait_items(cx, item, trait_items);
126         }
127     }
128
129     fn check_impl_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx ImplItem<'_>) {
130         if_chain! {
131             if item.ident.name == sym::len;
132             if let ImplItemKind::Fn(sig, _) = &item.kind;
133             if sig.decl.implicit_self.has_implicit_self();
134             if cx.access_levels.is_exported(item.hir_id());
135             if matches!(sig.decl.output, FnRetTy::Return(_));
136             if let Some(imp) = get_parent_as_impl(cx.tcx, item.hir_id());
137             if imp.of_trait.is_none();
138             if let TyKind::Path(ty_path) = &imp.self_ty.kind;
139             if let Some(ty_id) = cx.qpath_res(ty_path, imp.self_ty.hir_id).opt_def_id();
140             if let Some(local_id) = ty_id.as_local();
141             let ty_hir_id = cx.tcx.hir().local_def_id_to_hir_id(local_id);
142             if !is_allowed(cx, LEN_WITHOUT_IS_EMPTY, ty_hir_id);
143             if let Some(output) = parse_len_output(cx, cx.tcx.fn_sig(item.def_id).skip_binder());
144             then {
145                 let (name, kind) = match cx.tcx.hir().find(ty_hir_id) {
146                     Some(Node::ForeignItem(x)) => (x.ident.name, "extern type"),
147                     Some(Node::Item(x)) => match x.kind {
148                         ItemKind::Struct(..) => (x.ident.name, "struct"),
149                         ItemKind::Enum(..) => (x.ident.name, "enum"),
150                         ItemKind::Union(..) => (x.ident.name, "union"),
151                         _ => (x.ident.name, "type"),
152                     }
153                     _ => return,
154                 };
155                 check_for_is_empty(cx, sig.span, sig.decl.implicit_self, output, ty_id, name, kind)
156             }
157         }
158     }
159
160     fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
161         if expr.span.from_expansion() {
162             return;
163         }
164
165         if let ExprKind::Binary(Spanned { node: cmp, .. }, left, right) = expr.kind {
166             match cmp {
167                 BinOpKind::Eq => {
168                     check_cmp(cx, expr.span, left, right, "", 0); // len == 0
169                     check_cmp(cx, expr.span, right, left, "", 0); // 0 == len
170                 },
171                 BinOpKind::Ne => {
172                     check_cmp(cx, expr.span, left, right, "!", 0); // len != 0
173                     check_cmp(cx, expr.span, right, left, "!", 0); // 0 != len
174                 },
175                 BinOpKind::Gt => {
176                     check_cmp(cx, expr.span, left, right, "!", 0); // len > 0
177                     check_cmp(cx, expr.span, right, left, "", 1); // 1 > len
178                 },
179                 BinOpKind::Lt => {
180                     check_cmp(cx, expr.span, left, right, "", 1); // len < 1
181                     check_cmp(cx, expr.span, right, left, "!", 0); // 0 < len
182                 },
183                 BinOpKind::Ge => check_cmp(cx, expr.span, left, right, "!", 1), // len >= 1
184                 BinOpKind::Le => check_cmp(cx, expr.span, right, left, "!", 1), // 1 <= len
185                 _ => (),
186             }
187         }
188     }
189 }
190
191 fn check_trait_items(cx: &LateContext<'_>, visited_trait: &Item<'_>, trait_items: &[TraitItemRef]) {
192     fn is_named_self(cx: &LateContext<'_>, item: &TraitItemRef, name: Symbol) -> bool {
193         item.ident.name == name
194             && if let AssocItemKind::Fn { has_self } = item.kind {
195                 has_self && { cx.tcx.fn_sig(item.id.def_id).inputs().skip_binder().len() == 1 }
196             } else {
197                 false
198             }
199     }
200
201     // fill the set with current and super traits
202     fn fill_trait_set(traitt: DefId, set: &mut DefIdSet, cx: &LateContext<'_>) {
203         if set.insert(traitt) {
204             for supertrait in rustc_trait_selection::traits::supertrait_def_ids(cx.tcx, traitt) {
205                 fill_trait_set(supertrait, set, cx);
206             }
207         }
208     }
209
210     if cx.access_levels.is_exported(visited_trait.hir_id())
211         && trait_items.iter().any(|i| is_named_self(cx, i, sym::len))
212     {
213         let mut current_and_super_traits = DefIdSet::default();
214         fill_trait_set(visited_trait.def_id.to_def_id(), &mut current_and_super_traits, cx);
215
216         let is_empty_method_found = current_and_super_traits
217             .iter()
218             .flat_map(|&i| cx.tcx.associated_items(i).in_definition_order())
219             .any(|i| {
220                 i.kind == ty::AssocKind::Fn
221                     && i.fn_has_self_parameter
222                     && i.ident.name == sym!(is_empty)
223                     && cx.tcx.fn_sig(i.def_id).inputs().skip_binder().len() == 1
224             });
225
226         if !is_empty_method_found {
227             span_lint(
228                 cx,
229                 LEN_WITHOUT_IS_EMPTY,
230                 visited_trait.span,
231                 &format!(
232                     "trait `{}` has a `len` method but no (possibly inherited) `is_empty` method",
233                     visited_trait.ident.name
234                 ),
235             );
236         }
237     }
238 }
239
240 #[derive(Debug, Clone, Copy)]
241 enum LenOutput<'tcx> {
242     Integral,
243     Option(DefId),
244     Result(DefId, Ty<'tcx>),
245 }
246 fn parse_len_output(cx: &LateContext<'_>, sig: FnSig<'tcx>) -> Option<LenOutput<'tcx>> {
247     match *sig.output().kind() {
248         ty::Int(_) | ty::Uint(_) => Some(LenOutput::Integral),
249         ty::Adt(adt, subs) if cx.tcx.is_diagnostic_item(sym::option_type, adt.did) => {
250             subs.type_at(0).is_integral().then(|| LenOutput::Option(adt.did))
251         },
252         ty::Adt(adt, subs) if cx.tcx.is_diagnostic_item(sym::result_type, adt.did) => subs
253             .type_at(0)
254             .is_integral()
255             .then(|| LenOutput::Result(adt.did, subs.type_at(1))),
256         _ => None,
257     }
258 }
259
260 impl LenOutput<'_> {
261     fn matches_is_empty_output(self, ty: Ty<'_>) -> bool {
262         match (self, ty.kind()) {
263             (_, &ty::Bool) => true,
264             (Self::Option(id), &ty::Adt(adt, subs)) if id == adt.did => subs.type_at(0).is_bool(),
265             (Self::Result(id, err_ty), &ty::Adt(adt, subs)) if id == adt.did => {
266                 subs.type_at(0).is_bool() && TyS::same_type(subs.type_at(1), err_ty)
267             },
268             _ => false,
269         }
270     }
271
272     fn expected_sig(self, self_kind: ImplicitSelfKind) -> String {
273         let self_ref = match self_kind {
274             ImplicitSelfKind::ImmRef => "&",
275             ImplicitSelfKind::MutRef => "&mut ",
276             _ => "",
277         };
278         match self {
279             Self::Integral => format!("expected signature: `({}self) -> bool`", self_ref),
280             Self::Option(_) => format!(
281                 "expected signature: `({}self) -> bool` or `({}self) -> Option<bool>",
282                 self_ref, self_ref
283             ),
284             Self::Result(..) => format!(
285                 "expected signature: `({}self) -> bool` or `({}self) -> Result<bool>",
286                 self_ref, self_ref
287             ),
288         }
289     }
290 }
291
292 /// Checks if the given signature matches the expectations for `is_empty`
293 fn check_is_empty_sig(sig: FnSig<'_>, self_kind: ImplicitSelfKind, len_output: LenOutput<'_>) -> bool {
294     match &**sig.inputs_and_output {
295         [arg, res] if len_output.matches_is_empty_output(res) => {
296             matches!(
297                 (arg.kind(), self_kind),
298                 (ty::Ref(_, _, Mutability::Not), ImplicitSelfKind::ImmRef)
299                     | (ty::Ref(_, _, Mutability::Mut), ImplicitSelfKind::MutRef)
300             ) || (!arg.is_ref() && matches!(self_kind, ImplicitSelfKind::Imm | ImplicitSelfKind::Mut))
301         },
302         _ => false,
303     }
304 }
305
306 /// Checks if the given type has an `is_empty` method with the appropriate signature.
307 fn check_for_is_empty(
308     cx: &LateContext<'_>,
309     span: Span,
310     self_kind: ImplicitSelfKind,
311     output: LenOutput<'_>,
312     impl_ty: DefId,
313     item_name: Symbol,
314     item_kind: &str,
315 ) {
316     let is_empty = Symbol::intern("is_empty");
317     let is_empty = cx
318         .tcx
319         .inherent_impls(impl_ty)
320         .iter()
321         .flat_map(|&id| cx.tcx.associated_items(id).filter_by_name_unhygienic(is_empty))
322         .find(|item| item.kind == AssocKind::Fn);
323
324     let (msg, is_empty_span, self_kind) = match is_empty {
325         None => (
326             format!(
327                 "{} `{}` has a public `len` method, but no `is_empty` method",
328                 item_kind,
329                 item_name.as_str(),
330             ),
331             None,
332             None,
333         ),
334         Some(is_empty)
335             if !cx
336                 .access_levels
337                 .is_exported(cx.tcx.hir().local_def_id_to_hir_id(is_empty.def_id.expect_local())) =>
338         {
339             (
340                 format!(
341                     "{} `{}` has a public `len` method, but a private `is_empty` method",
342                     item_kind,
343                     item_name.as_str(),
344                 ),
345                 Some(cx.tcx.def_span(is_empty.def_id)),
346                 None,
347             )
348         },
349         Some(is_empty)
350             if !(is_empty.fn_has_self_parameter
351                 && check_is_empty_sig(cx.tcx.fn_sig(is_empty.def_id).skip_binder(), self_kind, output)) =>
352         {
353             (
354                 format!(
355                     "{} `{}` has a public `len` method, but the `is_empty` method has an unexpected signature",
356                     item_kind,
357                     item_name.as_str(),
358                 ),
359                 Some(cx.tcx.def_span(is_empty.def_id)),
360                 Some(self_kind),
361             )
362         },
363         Some(_) => return,
364     };
365
366     span_lint_and_then(cx, LEN_WITHOUT_IS_EMPTY, span, &msg, |db| {
367         if let Some(span) = is_empty_span {
368             db.span_note(span, "`is_empty` defined here");
369         }
370         if let Some(self_kind) = self_kind {
371             db.note(&output.expected_sig(self_kind));
372         }
373     });
374 }
375
376 fn check_cmp(cx: &LateContext<'_>, span: Span, method: &Expr<'_>, lit: &Expr<'_>, op: &str, compare_to: u32) {
377     if let (&ExprKind::MethodCall(method_path, _, args, _), &ExprKind::Lit(ref lit)) = (&method.kind, &lit.kind) {
378         // check if we are in an is_empty() method
379         if let Some(name) = get_item_name(cx, method) {
380             if name.as_str() == "is_empty" {
381                 return;
382             }
383         }
384
385         check_len(cx, span, method_path.ident.name, args, &lit.node, op, compare_to);
386     } else {
387         check_empty_expr(cx, span, method, lit, op);
388     }
389 }
390
391 fn check_len(
392     cx: &LateContext<'_>,
393     span: Span,
394     method_name: Symbol,
395     args: &[Expr<'_>],
396     lit: &LitKind,
397     op: &str,
398     compare_to: u32,
399 ) {
400     if let LitKind::Int(lit, _) = *lit {
401         // check if length is compared to the specified number
402         if lit != u128::from(compare_to) {
403             return;
404         }
405
406         if method_name == sym::len && args.len() == 1 && has_is_empty(cx, &args[0]) {
407             let mut applicability = Applicability::MachineApplicable;
408             span_lint_and_sugg(
409                 cx,
410                 LEN_ZERO,
411                 span,
412                 &format!("length comparison to {}", if compare_to == 0 { "zero" } else { "one" }),
413                 &format!("using `{}is_empty` is clearer and more explicit", op),
414                 format!(
415                     "{}{}.is_empty()",
416                     op,
417                     snippet_with_applicability(cx, args[0].span, "_", &mut applicability)
418                 ),
419                 applicability,
420             );
421         }
422     }
423 }
424
425 fn check_empty_expr(cx: &LateContext<'_>, span: Span, lit1: &Expr<'_>, lit2: &Expr<'_>, op: &str) {
426     if (is_empty_array(lit2) || is_empty_string(lit2)) && has_is_empty(cx, lit1) {
427         let mut applicability = Applicability::MachineApplicable;
428         span_lint_and_sugg(
429             cx,
430             COMPARISON_TO_EMPTY,
431             span,
432             "comparison to empty slice",
433             &format!("using `{}is_empty` is clearer and more explicit", op),
434             format!(
435                 "{}{}.is_empty()",
436                 op,
437                 snippet_with_applicability(cx, lit1.span, "_", &mut applicability)
438             ),
439             applicability,
440         );
441     }
442 }
443
444 fn is_empty_string(expr: &Expr<'_>) -> bool {
445     if let ExprKind::Lit(ref lit) = expr.kind {
446         if let LitKind::Str(lit, _) = lit.node {
447             let lit = lit.as_str();
448             return lit == "";
449         }
450     }
451     false
452 }
453
454 fn is_empty_array(expr: &Expr<'_>) -> bool {
455     if let ExprKind::Array(arr) = expr.kind {
456         return arr.is_empty();
457     }
458     false
459 }
460
461 /// Checks if this type has an `is_empty` method.
462 fn has_is_empty(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
463     /// Gets an `AssocItem` and return true if it matches `is_empty(self)`.
464     fn is_is_empty(cx: &LateContext<'_>, item: &ty::AssocItem) -> bool {
465         if let ty::AssocKind::Fn = item.kind {
466             if item.ident.name.as_str() == "is_empty" {
467                 let sig = cx.tcx.fn_sig(item.def_id);
468                 let ty = sig.skip_binder();
469                 ty.inputs().len() == 1
470             } else {
471                 false
472             }
473         } else {
474             false
475         }
476     }
477
478     /// Checks the inherent impl's items for an `is_empty(self)` method.
479     fn has_is_empty_impl(cx: &LateContext<'_>, id: DefId) -> bool {
480         cx.tcx.inherent_impls(id).iter().any(|imp| {
481             cx.tcx
482                 .associated_items(*imp)
483                 .in_definition_order()
484                 .any(|item| is_is_empty(cx, item))
485         })
486     }
487
488     let ty = &cx.typeck_results().expr_ty(expr).peel_refs();
489     match ty.kind() {
490         ty::Dynamic(tt, ..) => tt.principal().map_or(false, |principal| {
491             cx.tcx
492                 .associated_items(principal.def_id())
493                 .in_definition_order()
494                 .any(|item| is_is_empty(cx, item))
495         }),
496         ty::Projection(ref proj) => has_is_empty_impl(cx, proj.item_def_id),
497         ty::Adt(id, _) => has_is_empty_impl(cx, id.did),
498         ty::Array(..) | ty::Slice(..) | ty::Str => true,
499         _ => false,
500     }
501 }