2019-08-19 16:30:32 +00:00
|
|
|
|
use crate::utils::{get_item_name, snippet_with_applicability, span_lint, span_lint_and_sugg, walk_ptrs_ty};
|
2020-03-01 03:23:33 +00:00
|
|
|
|
use rustc_ast::ast::{LitKind, Name};
|
2018-12-29 15:04:45 +00:00
|
|
|
|
use rustc_data_structures::fx::FxHashSet;
|
|
|
|
|
use rustc_errors::Applicability;
|
2020-01-06 16:39:50 +00:00
|
|
|
|
use rustc_hir::def_id::DefId;
|
2020-02-21 08:39:38 +00:00
|
|
|
|
use rustc_hir::{AssocItemKind, BinOpKind, Expr, ExprKind, ImplItemRef, Item, ItemKind, TraitItemRef};
|
2020-01-12 06:08:41 +00:00
|
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-03-30 09:02:14 +00:00
|
|
|
|
use rustc_middle::ty;
|
2020-01-11 11:37:08 +00:00
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-01-04 10:00:00 +00:00
|
|
|
|
use rustc_span::source_map::{Span, Spanned};
|
2015-05-20 06:52:19 +00:00
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// **What it does:** Checks for getting the length of something via `.len()`
|
|
|
|
|
/// just to compare to zero, and suggests using `.is_empty()` where applicable.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** Some structures can answer `.is_empty()` much faster
|
2019-12-25 12:06:55 +00:00
|
|
|
|
/// than calculating their length. So it is good to get into the habit of using
|
|
|
|
|
/// `.is_empty()`, and having it is cheap.
|
|
|
|
|
/// Besides, it makes the intent clearer than a manual comparison in some contexts.
|
2019-03-05 16:50:33 +00:00
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2019-03-05 22:23:50 +00:00
|
|
|
|
/// ```ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// if x.len() == 0 {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
/// if y.len() != 0 {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
/// instead use
|
2019-03-05 22:23:50 +00:00
|
|
|
|
/// ```ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// if x.is_empty() {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
/// if !y.is_empty() {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
pub LEN_ZERO,
|
|
|
|
|
style,
|
|
|
|
|
"checking `.len() == 0` or `.len() > 0` (or similar) when `.is_empty()` could be used instead"
|
2016-02-05 23:13:29 +00:00
|
|
|
|
}
|
2015-05-20 06:52:19 +00:00
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// **What it does:** Checks for items that implement `.len()` but not
|
|
|
|
|
/// `.is_empty()`.
|
|
|
|
|
///
|
|
|
|
|
/// **Why is this bad?** It is good custom to have both methods, because for
|
|
|
|
|
/// some data structures, asking about the length will be a costly operation,
|
|
|
|
|
/// whereas `.is_empty()` can usually answer in constant time. Also it used to
|
|
|
|
|
/// lead to false positives on the [`len_zero`](#len_zero) lint – currently that
|
|
|
|
|
/// lint will ignore such entities.
|
|
|
|
|
///
|
|
|
|
|
/// **Known problems:** None.
|
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2019-03-05 22:23:50 +00:00
|
|
|
|
/// ```ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// impl X {
|
|
|
|
|
/// pub fn len(&self) -> usize {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2016-08-06 08:18:36 +00:00
|
|
|
|
pub LEN_WITHOUT_IS_EMPTY,
|
2018-03-28 13:24:26 +00:00
|
|
|
|
style,
|
2016-08-29 21:06:59 +00:00
|
|
|
|
"traits or impls with a public `len` method but no corresponding `is_empty` method"
|
2016-02-05 23:13:29 +00:00
|
|
|
|
}
|
2015-05-20 06:52:19 +00:00
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
|
declare_lint_pass!(LenZero => [LEN_ZERO, LEN_WITHOUT_IS_EMPTY]);
|
2015-08-11 18:22:20 +00:00
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LenZero {
|
2019-12-22 14:42:41 +00:00
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item<'_>) {
|
2019-08-19 16:30:32 +00:00
|
|
|
|
if item.span.from_expansion() {
|
2016-02-24 19:53:15 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 15:16:06 +00:00
|
|
|
|
match item.kind {
|
2018-07-16 13:07:39 +00:00
|
|
|
|
ItemKind::Trait(_, _, _, _, ref trait_items) => check_trait_items(cx, item, trait_items),
|
2020-01-18 05:14:36 +00:00
|
|
|
|
ItemKind::Impl {
|
|
|
|
|
of_trait: None,
|
|
|
|
|
items: ref impl_items,
|
|
|
|
|
..
|
|
|
|
|
} => check_impl_items(cx, item, impl_items),
|
2016-01-04 04:26:12 +00:00
|
|
|
|
_ => (),
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-27 07:12:26 +00:00
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr<'_>) {
|
2019-08-19 16:30:32 +00:00
|
|
|
|
if expr.span.from_expansion() {
|
2016-02-24 19:53:15 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-27 15:16:06 +00:00
|
|
|
|
if let ExprKind::Binary(Spanned { node: cmp, .. }, ref left, ref right) = expr.kind {
|
2015-09-06 18:57:06 +00:00
|
|
|
|
match cmp {
|
2018-07-12 07:50:09 +00:00
|
|
|
|
BinOpKind::Eq => {
|
2018-05-05 13:01:51 +00:00
|
|
|
|
check_cmp(cx, expr.span, left, right, "", 0); // len == 0
|
|
|
|
|
check_cmp(cx, expr.span, right, left, "", 0); // 0 == len
|
|
|
|
|
},
|
2018-07-12 07:50:09 +00:00
|
|
|
|
BinOpKind::Ne => {
|
2018-05-05 13:01:51 +00:00
|
|
|
|
check_cmp(cx, expr.span, left, right, "!", 0); // len != 0
|
|
|
|
|
check_cmp(cx, expr.span, right, left, "!", 0); // 0 != len
|
|
|
|
|
},
|
2018-07-12 07:50:09 +00:00
|
|
|
|
BinOpKind::Gt => {
|
2018-05-05 13:01:51 +00:00
|
|
|
|
check_cmp(cx, expr.span, left, right, "!", 0); // len > 0
|
|
|
|
|
check_cmp(cx, expr.span, right, left, "", 1); // 1 > len
|
|
|
|
|
},
|
2018-07-12 07:50:09 +00:00
|
|
|
|
BinOpKind::Lt => {
|
2018-05-05 13:01:51 +00:00
|
|
|
|
check_cmp(cx, expr.span, left, right, "", 1); // len < 1
|
|
|
|
|
check_cmp(cx, expr.span, right, left, "!", 0); // 0 < len
|
|
|
|
|
},
|
2019-01-10 21:48:40 +00:00
|
|
|
|
BinOpKind::Ge => check_cmp(cx, expr.span, left, right, "!", 1), // len >= 1
|
|
|
|
|
BinOpKind::Le => check_cmp(cx, expr.span, right, left, "!", 1), // 1 <= len
|
2016-01-04 04:26:12 +00:00
|
|
|
|
_ => (),
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
2015-09-06 18:57:06 +00:00
|
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
2015-05-20 06:52:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-22 14:42:41 +00:00
|
|
|
|
fn check_trait_items(cx: &LateContext<'_, '_>, visited_trait: &Item<'_>, trait_items: &[TraitItemRef]) {
|
2019-05-17 21:53:54 +00:00
|
|
|
|
fn is_named_self(cx: &LateContext<'_, '_>, item: &TraitItemRef, name: &str) -> bool {
|
|
|
|
|
item.ident.name.as_str() == name
|
2019-05-25 12:31:34 +00:00
|
|
|
|
&& if let AssocItemKind::Method { has_self } = item.kind {
|
2018-11-27 20:14:15 +00:00
|
|
|
|
has_self && {
|
2019-07-06 03:52:51 +00:00
|
|
|
|
let did = cx.tcx.hir().local_def_id(item.id.hir_id);
|
2018-11-27 20:14:15 +00:00
|
|
|
|
cx.tcx.fn_sig(did).inputs().skip_binder().len() == 1
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
false
|
2017-01-04 21:06:38 +00:00
|
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-28 21:13:56 +00:00
|
|
|
|
// fill the set with current and super traits
|
2018-09-11 23:34:52 +00:00
|
|
|
|
fn fill_trait_set(traitt: DefId, set: &mut FxHashSet<DefId>, cx: &LateContext<'_, '_>) {
|
2017-08-28 21:13:56 +00:00
|
|
|
|
if set.insert(traitt) {
|
2020-03-14 20:26:32 +00:00
|
|
|
|
for supertrait in rustc_trait_selection::traits::supertrait_def_ids(cx.tcx, traitt) {
|
2017-09-04 15:05:47 +00:00
|
|
|
|
fill_trait_set(supertrait, set, cx);
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
2016-01-04 04:26:12 +00:00
|
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
2017-08-28 21:13:56 +00:00
|
|
|
|
|
2019-05-17 22:58:25 +00:00
|
|
|
|
if cx.access_levels.is_exported(visited_trait.hir_id) && trait_items.iter().any(|i| is_named_self(cx, i, "len")) {
|
2018-09-11 23:34:52 +00:00
|
|
|
|
let mut current_and_super_traits = FxHashSet::default();
|
2019-07-06 03:52:51 +00:00
|
|
|
|
let visited_trait_def_id = cx.tcx.hir().local_def_id(visited_trait.hir_id);
|
2017-09-04 15:05:47 +00:00
|
|
|
|
fill_trait_set(visited_trait_def_id, &mut current_and_super_traits, cx);
|
2017-08-28 21:13:56 +00:00
|
|
|
|
|
|
|
|
|
let is_empty_method_found = current_and_super_traits
|
|
|
|
|
.iter()
|
2020-02-21 05:20:49 +00:00
|
|
|
|
.flat_map(|&i| cx.tcx.associated_items(i).in_definition_order())
|
2017-09-04 15:05:47 +00:00
|
|
|
|
.any(|i| {
|
2019-05-25 12:31:34 +00:00
|
|
|
|
i.kind == ty::AssocKind::Method
|
2018-11-27 20:14:15 +00:00
|
|
|
|
&& i.method_has_self_argument
|
2019-05-17 21:53:54 +00:00
|
|
|
|
&& i.ident.name == sym!(is_empty)
|
2017-11-04 19:55:56 +00:00
|
|
|
|
&& cx.tcx.fn_sig(i.def_id).inputs().skip_binder().len() == 1
|
2017-09-04 15:05:47 +00:00
|
|
|
|
});
|
2017-08-28 21:13:56 +00:00
|
|
|
|
|
|
|
|
|
if !is_empty_method_found {
|
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
LEN_WITHOUT_IS_EMPTY,
|
|
|
|
|
visited_trait.span,
|
|
|
|
|
&format!(
|
|
|
|
|
"trait `{}` has a `len` method but no (possibly inherited) `is_empty` method",
|
2018-12-30 00:09:24 +00:00
|
|
|
|
visited_trait.ident.name
|
2017-08-28 21:13:56 +00:00
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-20 06:52:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 04:02:10 +00:00
|
|
|
|
fn check_impl_items(cx: &LateContext<'_, '_>, item: &Item<'_>, impl_items: &[ImplItemRef<'_>]) {
|
|
|
|
|
fn is_named_self(cx: &LateContext<'_, '_>, item: &ImplItemRef<'_>, name: &str) -> bool {
|
2019-05-17 21:53:54 +00:00
|
|
|
|
item.ident.name.as_str() == name
|
2019-05-25 12:31:34 +00:00
|
|
|
|
&& if let AssocItemKind::Method { has_self } = item.kind {
|
2018-11-27 20:14:15 +00:00
|
|
|
|
has_self && {
|
2019-07-06 03:52:51 +00:00
|
|
|
|
let did = cx.tcx.hir().local_def_id(item.id.hir_id);
|
2018-11-27 20:14:15 +00:00
|
|
|
|
cx.tcx.fn_sig(did).inputs().skip_binder().len() == 1
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
false
|
2016-11-19 23:13:08 +00:00
|
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-05-17 21:53:54 +00:00
|
|
|
|
let is_empty = if let Some(is_empty) = impl_items.iter().find(|i| is_named_self(cx, i, "is_empty")) {
|
2019-03-23 22:39:58 +00:00
|
|
|
|
if cx.access_levels.is_exported(is_empty.id.hir_id) {
|
2016-08-29 21:06:59 +00:00
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
"a private"
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
"no corresponding"
|
|
|
|
|
};
|
|
|
|
|
|
2019-05-17 21:53:54 +00:00
|
|
|
|
if let Some(i) = impl_items.iter().find(|i| is_named_self(cx, i, "len")) {
|
2019-03-23 22:37:38 +00:00
|
|
|
|
if cx.access_levels.is_exported(i.id.hir_id) {
|
2019-07-06 03:52:51 +00:00
|
|
|
|
let def_id = cx.tcx.hir().local_def_id(item.hir_id);
|
2017-04-27 12:00:35 +00:00
|
|
|
|
let ty = cx.tcx.type_of(def_id);
|
2016-08-29 21:06:59 +00:00
|
|
|
|
|
2017-08-09 07:30:56 +00:00
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
LEN_WITHOUT_IS_EMPTY,
|
|
|
|
|
item.span,
|
2018-05-05 13:01:51 +00:00
|
|
|
|
&format!(
|
|
|
|
|
"item `{}` has a public `len` method but {} `is_empty` method",
|
|
|
|
|
ty, is_empty
|
|
|
|
|
),
|
2017-08-09 07:30:56 +00:00
|
|
|
|
);
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-20 06:52:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-27 07:12:26 +00:00
|
|
|
|
fn check_cmp(cx: &LateContext<'_, '_>, span: Span, method: &Expr<'_>, lit: &Expr<'_>, op: &str, compare_to: u32) {
|
2019-09-27 15:16:06 +00:00
|
|
|
|
if let (&ExprKind::MethodCall(ref method_path, _, ref args), &ExprKind::Lit(ref lit)) = (&method.kind, &lit.kind) {
|
2018-05-05 13:01:51 +00:00
|
|
|
|
// check if we are in an is_empty() method
|
|
|
|
|
if let Some(name) = get_item_name(cx, method) {
|
2019-05-17 21:53:54 +00:00
|
|
|
|
if name.as_str() == "is_empty" {
|
2018-05-05 13:01:51 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2016-01-04 04:26:12 +00:00
|
|
|
|
}
|
2018-05-05 13:01:51 +00:00
|
|
|
|
|
2019-05-13 18:29:54 +00:00
|
|
|
|
check_len(cx, span, method_path.ident.name, args, &lit.node, op, compare_to)
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
2015-05-20 06:52:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-27 14:13:57 +00:00
|
|
|
|
fn check_len(
|
|
|
|
|
cx: &LateContext<'_, '_>,
|
|
|
|
|
span: Span,
|
|
|
|
|
method_name: Name,
|
2019-12-27 07:12:26 +00:00
|
|
|
|
args: &[Expr<'_>],
|
2019-05-13 18:29:54 +00:00
|
|
|
|
lit: &LitKind,
|
2018-11-27 14:13:57 +00:00
|
|
|
|
op: &str,
|
|
|
|
|
compare_to: u32,
|
|
|
|
|
) {
|
2019-05-13 18:29:54 +00:00
|
|
|
|
if let LitKind::Int(lit, _) = *lit {
|
2018-05-05 13:01:51 +00:00
|
|
|
|
// check if length is compared to the specified number
|
|
|
|
|
if lit != u128::from(compare_to) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-17 21:53:54 +00:00
|
|
|
|
if method_name.as_str() == "len" && args.len() == 1 && has_is_empty(cx, &args[0]) {
|
2018-11-27 14:13:57 +00:00
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2017-08-09 07:30:56 +00:00
|
|
|
|
span_lint_and_sugg(
|
|
|
|
|
cx,
|
|
|
|
|
LEN_ZERO,
|
|
|
|
|
span,
|
2018-05-05 13:01:51 +00:00
|
|
|
|
&format!("length comparison to {}", if compare_to == 0 { "zero" } else { "one" }),
|
2019-07-29 14:42:33 +00:00
|
|
|
|
&format!("using `{}is_empty` is clearer and more explicit", op),
|
2018-11-27 20:14:15 +00:00
|
|
|
|
format!(
|
|
|
|
|
"{}{}.is_empty()",
|
|
|
|
|
op,
|
|
|
|
|
snippet_with_applicability(cx, args[0].span, "_", &mut applicability)
|
|
|
|
|
),
|
2018-11-27 14:13:57 +00:00
|
|
|
|
applicability,
|
2017-08-09 07:30:56 +00:00
|
|
|
|
);
|
2016-01-04 04:26:12 +00:00
|
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
2015-05-20 06:52:19 +00:00
|
|
|
|
}
|
2015-06-01 05:40:33 +00:00
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// Checks if this type has an `is_empty` method.
|
2019-12-27 07:12:26 +00:00
|
|
|
|
fn has_is_empty(cx: &LateContext<'_, '_>, expr: &Expr<'_>) -> bool {
|
2019-05-25 12:31:34 +00:00
|
|
|
|
/// Gets an `AssocItem` and return true if it matches `is_empty(self)`.
|
|
|
|
|
fn is_is_empty(cx: &LateContext<'_, '_>, item: &ty::AssocItem) -> bool {
|
|
|
|
|
if let ty::AssocKind::Method = item.kind {
|
2019-05-17 21:53:54 +00:00
|
|
|
|
if item.ident.name.as_str() == "is_empty" {
|
2017-06-29 13:38:25 +00:00
|
|
|
|
let sig = cx.tcx.fn_sig(item.def_id);
|
2017-03-01 12:24:19 +00:00
|
|
|
|
let ty = sig.skip_binder();
|
2016-12-11 07:57:19 +00:00
|
|
|
|
ty.inputs().len() == 1
|
2016-11-16 20:57:56 +00:00
|
|
|
|
} else {
|
|
|
|
|
false
|
|
|
|
|
}
|
2016-01-04 04:26:12 +00:00
|
|
|
|
} else {
|
|
|
|
|
false
|
|
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// Checks the inherent impl's items for an `is_empty(self)` method.
|
2018-07-23 11:01:12 +00:00
|
|
|
|
fn has_is_empty_impl(cx: &LateContext<'_, '_>, id: DefId) -> bool {
|
2020-02-21 05:20:49 +00:00
|
|
|
|
cx.tcx.inherent_impls(id).iter().any(|imp| {
|
|
|
|
|
cx.tcx
|
|
|
|
|
.associated_items(*imp)
|
|
|
|
|
.in_definition_order()
|
|
|
|
|
.any(|item| is_is_empty(cx, &item))
|
|
|
|
|
})
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-13 16:04:56 +00:00
|
|
|
|
let ty = &walk_ptrs_ty(cx.tables.expr_ty(expr));
|
2019-09-26 09:03:36 +00:00
|
|
|
|
match ty.kind {
|
2019-01-05 07:21:56 +00:00
|
|
|
|
ty::Dynamic(ref tt, ..) => {
|
|
|
|
|
if let Some(principal) = tt.principal() {
|
|
|
|
|
cx.tcx
|
|
|
|
|
.associated_items(principal.def_id())
|
2020-02-21 05:20:49 +00:00
|
|
|
|
.in_definition_order()
|
2019-01-05 07:21:56 +00:00
|
|
|
|
.any(|item| is_is_empty(cx, &item))
|
|
|
|
|
} else {
|
|
|
|
|
false
|
|
|
|
|
}
|
|
|
|
|
},
|
2018-08-22 21:34:52 +00:00
|
|
|
|
ty::Projection(ref proj) => has_is_empty_impl(cx, proj.item_def_id),
|
|
|
|
|
ty::Adt(id, _) => has_is_empty_impl(cx, id.did),
|
|
|
|
|
ty::Array(..) | ty::Slice(..) | ty::Str => true,
|
2015-08-11 18:22:20 +00:00
|
|
|
|
_ => false,
|
|
|
|
|
}
|
2015-06-01 05:40:33 +00:00
|
|
|
|
}
|