2018-11-27 08:13:57 -06:00
|
|
|
|
use crate::utils::{get_item_name, in_macro, snippet_with_applicability, span_lint, span_lint_and_sugg, walk_ptrs_ty};
|
2018-12-29 09:04:45 -06:00
|
|
|
|
use rustc::hir::def_id::DefId;
|
|
|
|
|
use rustc::hir::*;
|
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
|
use rustc::ty;
|
|
|
|
|
use rustc::{declare_tool_lint, lint_array};
|
|
|
|
|
use rustc_data_structures::fx::FxHashSet;
|
|
|
|
|
use rustc_errors::Applicability;
|
|
|
|
|
use syntax::ast::{Lit, LitKind, Name};
|
|
|
|
|
use syntax::source_map::{Span, Spanned};
|
2015-05-20 01:52:19 -05:00
|
|
|
|
|
2016-08-06 02:55:04 -05: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.
|
2015-12-10 18:22:27 -06:00
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **Why is this bad?** Some structures can answer `.is_empty()` much faster
|
2017-08-12 17:14:28 -05:00
|
|
|
|
/// than calculating their length. Notably, for slices, getting the length
|
|
|
|
|
/// requires a subtraction whereas `.is_empty()` is just a comparison. 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.
|
2015-12-10 18:22:27 -06:00
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **Known problems:** None.
|
2015-12-10 18:22:27 -06:00
|
|
|
|
///
|
2016-07-15 17:25:44 -05:00
|
|
|
|
/// **Example:**
|
|
|
|
|
/// ```rust
|
2018-11-27 14:14:15 -06:00
|
|
|
|
/// if x.len() == 0 {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
/// if y.len() != 0 {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
2018-08-11 17:16:03 -05:00
|
|
|
|
/// ```
|
|
|
|
|
/// instead use
|
|
|
|
|
/// ```rust
|
2018-11-27 14:14:15 -06:00
|
|
|
|
/// if x.len().is_empty() {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
/// if !y.len().is_empty() {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
2016-07-15 17:25:44 -05:00
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
pub LEN_ZERO,
|
|
|
|
|
style,
|
|
|
|
|
"checking `.len() == 0` or `.len() > 0` (or similar) when `.is_empty()` \
|
|
|
|
|
could be used instead"
|
2016-02-05 17:13:29 -06:00
|
|
|
|
}
|
2015-05-20 01:52:19 -05:00
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **What it does:** Checks for items that implement `.len()` but not
|
|
|
|
|
/// `.is_empty()`.
|
2015-12-10 18:22:27 -06:00
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **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.
|
2015-12-10 18:22:27 -06:00
|
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
|
/// **Known problems:** None.
|
2015-12-10 18:22:27 -06:00
|
|
|
|
///
|
|
|
|
|
/// **Example:**
|
2016-07-15 17:25:44 -05:00
|
|
|
|
/// ```rust
|
2015-12-10 18:22:27 -06:00
|
|
|
|
/// impl X {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
/// pub fn len(&self) -> usize {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
2015-12-10 18:22:27 -06:00
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
|
declare_clippy_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
|
pub LEN_WITHOUT_IS_EMPTY,
|
2018-03-28 08:24:26 -05:00
|
|
|
|
style,
|
2016-08-29 16:06:59 -05:00
|
|
|
|
"traits or impls with a public `len` method but no corresponding `is_empty` method"
|
2016-02-05 17:13:29 -06:00
|
|
|
|
}
|
2015-05-20 01:52:19 -05:00
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
|
#[derive(Copy, Clone)]
|
2015-05-20 01:52:19 -05:00
|
|
|
|
pub struct LenZero;
|
|
|
|
|
|
|
|
|
|
impl LintPass for LenZero {
|
2015-08-11 13:22:20 -05:00
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-05-20 01:52:19 -05:00
|
|
|
|
lint_array!(LEN_ZERO, LEN_WITHOUT_IS_EMPTY)
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for LenZero {
|
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'a, 'tcx>, item: &'tcx Item) {
|
2017-03-31 17:14:04 -05:00
|
|
|
|
if in_macro(item.span) {
|
2016-02-24 13:53:15 -06:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-21 13:44:48 -05:00
|
|
|
|
match item.node {
|
2018-07-16 08:07:39 -05:00
|
|
|
|
ItemKind::Trait(_, _, _, _, ref trait_items) => check_trait_items(cx, item, trait_items),
|
|
|
|
|
ItemKind::Impl(_, _, _, _, None, _, ref impl_items) => check_impl_items(cx, item, impl_items),
|
2016-01-03 22:26:12 -06:00
|
|
|
|
_ => (),
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2017-03-31 17:14:04 -05:00
|
|
|
|
if in_macro(expr.span) {
|
2016-02-24 13:53:15 -06:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-12 02:30:57 -05:00
|
|
|
|
if let ExprKind::Binary(Spanned { node: cmp, .. }, ref left, ref right) = expr.node {
|
2015-09-06 13:57:06 -05:00
|
|
|
|
match cmp {
|
2018-07-12 02:50:09 -05:00
|
|
|
|
BinOpKind::Eq => {
|
2018-05-05 08:01:51 -05:00
|
|
|
|
check_cmp(cx, expr.span, left, right, "", 0); // len == 0
|
|
|
|
|
check_cmp(cx, expr.span, right, left, "", 0); // 0 == len
|
|
|
|
|
},
|
2018-07-12 02:50:09 -05:00
|
|
|
|
BinOpKind::Ne => {
|
2018-05-05 08:01:51 -05:00
|
|
|
|
check_cmp(cx, expr.span, left, right, "!", 0); // len != 0
|
|
|
|
|
check_cmp(cx, expr.span, right, left, "!", 0); // 0 != len
|
|
|
|
|
},
|
2018-07-12 02:50:09 -05:00
|
|
|
|
BinOpKind::Gt => {
|
2018-05-05 08:01:51 -05:00
|
|
|
|
check_cmp(cx, expr.span, left, right, "!", 0); // len > 0
|
|
|
|
|
check_cmp(cx, expr.span, right, left, "", 1); // 1 > len
|
|
|
|
|
},
|
2018-07-12 02:50:09 -05:00
|
|
|
|
BinOpKind::Lt => {
|
2018-05-05 08:01:51 -05:00
|
|
|
|
check_cmp(cx, expr.span, left, right, "", 1); // len < 1
|
|
|
|
|
check_cmp(cx, expr.span, right, left, "!", 0); // 0 < len
|
|
|
|
|
},
|
2018-07-12 02:50:09 -05: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-03 22:26:12 -06:00
|
|
|
|
_ => (),
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
2015-09-06 13:57:06 -05:00
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
2015-05-20 01:52:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn check_trait_items(cx: &LateContext<'_, '_>, visited_trait: &Item, trait_items: &[TraitItemRef]) {
|
|
|
|
|
fn is_named_self(cx: &LateContext<'_, '_>, item: &TraitItemRef, name: &str) -> bool {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
item.ident.name == name
|
|
|
|
|
&& if let AssociatedItemKind::Method { has_self } = item.kind {
|
|
|
|
|
has_self && {
|
2018-12-07 18:56:03 -06:00
|
|
|
|
let did = cx.tcx.hir().local_def_id(item.id.node_id);
|
2018-11-27 14:14:15 -06:00
|
|
|
|
cx.tcx.fn_sig(did).inputs().skip_binder().len() == 1
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
false
|
2017-01-04 15:06:38 -06:00
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2017-08-28 16:13:56 -05:00
|
|
|
|
// fill the set with current and super traits
|
2018-09-11 18:34:52 -05:00
|
|
|
|
fn fill_trait_set(traitt: DefId, set: &mut FxHashSet<DefId>, cx: &LateContext<'_, '_>) {
|
2017-08-28 16:13:56 -05:00
|
|
|
|
if set.insert(traitt) {
|
2018-12-29 09:04:45 -06:00
|
|
|
|
for supertrait in rustc::traits::supertrait_def_ids(cx.tcx, traitt) {
|
2017-09-04 10:05:47 -05:00
|
|
|
|
fill_trait_set(supertrait, set, cx);
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
2017-08-28 16:13:56 -05:00
|
|
|
|
|
2017-09-03 16:15:15 -05:00
|
|
|
|
if cx.access_levels.is_exported(visited_trait.id) && trait_items.iter().any(|i| is_named_self(cx, i, "len")) {
|
2018-09-11 18:34:52 -05:00
|
|
|
|
let mut current_and_super_traits = FxHashSet::default();
|
2018-12-07 18:56:03 -06:00
|
|
|
|
let visited_trait_def_id = cx.tcx.hir().local_def_id(visited_trait.id);
|
2017-09-04 10:05:47 -05:00
|
|
|
|
fill_trait_set(visited_trait_def_id, &mut current_and_super_traits, cx);
|
2017-08-28 16:13:56 -05:00
|
|
|
|
|
|
|
|
|
let is_empty_method_found = current_and_super_traits
|
|
|
|
|
.iter()
|
2017-09-04 10:05:47 -05:00
|
|
|
|
.flat_map(|&i| cx.tcx.associated_items(i))
|
|
|
|
|
.any(|i| {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
i.kind == ty::AssociatedKind::Method
|
|
|
|
|
&& i.method_has_self_argument
|
|
|
|
|
&& i.ident.name == "is_empty"
|
2017-11-04 14:55:56 -05:00
|
|
|
|
&& cx.tcx.fn_sig(i.def_id).inputs().skip_binder().len() == 1
|
2017-09-04 10:05:47 -05:00
|
|
|
|
});
|
2017-08-28 16:13:56 -05: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-29 18:09:24 -06:00
|
|
|
|
visited_trait.ident.name
|
2017-08-28 16:13:56 -05:00
|
|
|
|
),
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-20 01:52:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn check_impl_items(cx: &LateContext<'_, '_>, item: &Item, impl_items: &[ImplItemRef]) {
|
|
|
|
|
fn is_named_self(cx: &LateContext<'_, '_>, item: &ImplItemRef, name: &str) -> bool {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
item.ident.name == name
|
|
|
|
|
&& if let AssociatedItemKind::Method { has_self } = item.kind {
|
|
|
|
|
has_self && {
|
2018-12-07 18:56:03 -06:00
|
|
|
|
let did = cx.tcx.hir().local_def_id(item.id.node_id);
|
2018-11-27 14:14:15 -06:00
|
|
|
|
cx.tcx.fn_sig(did).inputs().skip_binder().len() == 1
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
false
|
2016-11-19 17:13:08 -06:00
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2016-11-19 17:13:08 -06:00
|
|
|
|
let is_empty = if let Some(is_empty) = impl_items.iter().find(|i| is_named_self(cx, i, "is_empty")) {
|
|
|
|
|
if cx.access_levels.is_exported(is_empty.id.node_id) {
|
2016-08-29 16:06:59 -05:00
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
"a private"
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
"no corresponding"
|
|
|
|
|
};
|
|
|
|
|
|
2016-11-19 17:13:08 -06:00
|
|
|
|
if let Some(i) = impl_items.iter().find(|i| is_named_self(cx, i, "len")) {
|
|
|
|
|
if cx.access_levels.is_exported(i.id.node_id) {
|
2018-12-07 18:56:03 -06:00
|
|
|
|
let def_id = cx.tcx.hir().local_def_id(item.id);
|
2017-04-27 07:00:35 -05:00
|
|
|
|
let ty = cx.tcx.type_of(def_id);
|
2016-08-29 16:06:59 -05:00
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_lint(
|
|
|
|
|
cx,
|
|
|
|
|
LEN_WITHOUT_IS_EMPTY,
|
|
|
|
|
item.span,
|
2018-05-05 08:01:51 -05:00
|
|
|
|
&format!(
|
|
|
|
|
"item `{}` has a public `len` method but {} `is_empty` method",
|
|
|
|
|
ty, is_empty
|
|
|
|
|
),
|
2017-08-09 02:30:56 -05:00
|
|
|
|
);
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-20 01:52:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn check_cmp(cx: &LateContext<'_, '_>, span: Span, method: &Expr, lit: &Expr, op: &str, compare_to: u32) {
|
2018-07-12 02:30:57 -05:00
|
|
|
|
if let (&ExprKind::MethodCall(ref method_path, _, ref args), &ExprKind::Lit(ref lit)) = (&method.node, &lit.node) {
|
2018-05-05 08:01:51 -05:00
|
|
|
|
// check if we are in an is_empty() method
|
|
|
|
|
if let Some(name) = get_item_name(cx, method) {
|
|
|
|
|
if name == "is_empty" {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
|
}
|
2018-05-05 08:01:51 -05:00
|
|
|
|
|
2018-06-28 08:46:58 -05:00
|
|
|
|
check_len(cx, span, method_path.ident.name, args, lit, op, compare_to)
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
2015-05-20 01:52:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
2018-11-27 08:13:57 -06:00
|
|
|
|
fn check_len(
|
|
|
|
|
cx: &LateContext<'_, '_>,
|
|
|
|
|
span: Span,
|
|
|
|
|
method_name: Name,
|
|
|
|
|
args: &[Expr],
|
|
|
|
|
lit: &Lit,
|
|
|
|
|
op: &str,
|
|
|
|
|
compare_to: u32,
|
|
|
|
|
) {
|
2017-09-05 04:33:04 -05:00
|
|
|
|
if let Spanned {
|
2018-05-05 08:01:51 -05:00
|
|
|
|
node: LitKind::Int(lit, _),
|
2017-09-05 04:33:04 -05:00
|
|
|
|
..
|
|
|
|
|
} = *lit
|
|
|
|
|
{
|
2018-05-05 08:01:51 -05:00
|
|
|
|
// check if length is compared to the specified number
|
|
|
|
|
if lit != u128::from(compare_to) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if method_name == "len" && args.len() == 1 && has_is_empty(cx, &args[0]) {
|
2018-11-27 08:13:57 -06:00
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2017-08-09 02:30:56 -05:00
|
|
|
|
span_lint_and_sugg(
|
|
|
|
|
cx,
|
|
|
|
|
LEN_ZERO,
|
|
|
|
|
span,
|
2018-05-05 08:01:51 -05:00
|
|
|
|
&format!("length comparison to {}", if compare_to == 0 { "zero" } else { "one" }),
|
2018-10-16 16:23:31 -05:00
|
|
|
|
"using `is_empty` is clearer and more explicit",
|
2018-11-27 14:14:15 -06:00
|
|
|
|
format!(
|
|
|
|
|
"{}{}.is_empty()",
|
|
|
|
|
op,
|
|
|
|
|
snippet_with_applicability(cx, args[0].span, "_", &mut applicability)
|
|
|
|
|
),
|
2018-11-27 08:13:57 -06:00
|
|
|
|
applicability,
|
2017-08-09 02:30:56 -05:00
|
|
|
|
);
|
2016-01-03 22:26:12 -06:00
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
2015-05-20 01:52:19 -05:00
|
|
|
|
}
|
2015-06-01 00:40:33 -05:00
|
|
|
|
|
2016-03-19 11:48:29 -05:00
|
|
|
|
/// Check if this type has an `is_empty` method.
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn has_is_empty(cx: &LateContext<'_, '_>, expr: &Expr) -> bool {
|
2016-11-16 14:57:56 -06:00
|
|
|
|
/// Get an `AssociatedItem` and return true if it matches `is_empty(self)`.
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn is_is_empty(cx: &LateContext<'_, '_>, item: &ty::AssociatedItem) -> bool {
|
2016-11-16 14:57:56 -06:00
|
|
|
|
if let ty::AssociatedKind::Method = item.kind {
|
2018-06-28 08:46:58 -05:00
|
|
|
|
if item.ident.name == "is_empty" {
|
2017-06-29 08:38:25 -05:00
|
|
|
|
let sig = cx.tcx.fn_sig(item.def_id);
|
2017-03-01 06:24:19 -06:00
|
|
|
|
let ty = sig.skip_binder();
|
2016-12-11 01:57:19 -06:00
|
|
|
|
ty.inputs().len() == 1
|
2016-11-16 14:57:56 -06:00
|
|
|
|
} else {
|
|
|
|
|
false
|
|
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
|
} else {
|
|
|
|
|
false
|
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-19 11:48:29 -05:00
|
|
|
|
/// Check the inherent impl's items for an `is_empty(self)` method.
|
2018-07-23 06:01:12 -05:00
|
|
|
|
fn has_is_empty_impl(cx: &LateContext<'_, '_>, id: DefId) -> bool {
|
2018-11-27 14:14:15 -06:00
|
|
|
|
cx.tcx
|
|
|
|
|
.inherent_impls(id)
|
|
|
|
|
.iter()
|
|
|
|
|
.any(|imp| cx.tcx.associated_items(*imp).any(|item| is_is_empty(cx, &item)))
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-13 10:04:56 -06:00
|
|
|
|
let ty = &walk_ptrs_ty(cx.tables.expr_ty(expr));
|
2015-08-11 13:22:20 -05:00
|
|
|
|
match ty.sty {
|
2019-01-05 01:21:56 -06:00
|
|
|
|
ty::Dynamic(ref tt, ..) => {
|
|
|
|
|
if let Some(principal) = tt.principal() {
|
|
|
|
|
cx.tcx
|
|
|
|
|
.associated_items(principal.def_id())
|
|
|
|
|
.any(|item| is_is_empty(cx, &item))
|
|
|
|
|
} else {
|
|
|
|
|
false
|
|
|
|
|
}
|
|
|
|
|
},
|
2018-08-22 16:34:52 -05: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 13:22:20 -05:00
|
|
|
|
_ => false,
|
|
|
|
|
}
|
2015-06-01 00:40:33 -05:00
|
|
|
|
}
|