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