2015-08-16 01:54:43 -05:00
|
|
|
|
use rustc::lint::*;
|
2016-04-07 10:46:48 -05:00
|
|
|
|
use rustc::hir::def_id::DefId;
|
2016-11-16 14:57:56 -06:00
|
|
|
|
use rustc::ty;
|
2016-04-07 10:46:48 -05:00
|
|
|
|
use rustc::hir::*;
|
2016-02-24 10:38:57 -06:00
|
|
|
|
use syntax::ast::{Lit, LitKind, Name};
|
|
|
|
|
use syntax::codemap::{Span, Spanned};
|
2017-01-04 15:06:38 -06:00
|
|
|
|
use utils::{get_item_name, in_macro, snippet, span_lint, span_lint_and_then, walk_ptrs_ty};
|
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
|
|
|
|
|
/// 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 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
|
|
|
|
|
/// if x.len() == 0 { .. }
|
|
|
|
|
/// ```
|
2016-02-05 17:13:29 -06:00
|
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
|
pub LEN_ZERO,
|
|
|
|
|
Warn,
|
2016-02-05 17:13:29 -06:00
|
|
|
|
"checking `.len() == 0` or `.len() > 0` (or similar) when `.is_empty()` \
|
|
|
|
|
could be used instead"
|
|
|
|
|
}
|
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 {
|
2016-08-29 16:06:59 -05:00
|
|
|
|
/// pub fn len(&self) -> usize { .. }
|
2015-12-10 18:22:27 -06:00
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2016-02-05 17:13:29 -06:00
|
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
|
pub LEN_WITHOUT_IS_EMPTY,
|
|
|
|
|
Warn,
|
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
|
|
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
|
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) {
|
2016-02-24 13:53:15 -06:00
|
|
|
|
if in_macro(cx, item.span) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-21 13:44:48 -05:00
|
|
|
|
match item.node {
|
2016-01-03 22:26:12 -06:00
|
|
|
|
ItemTrait(_, _, _, ref trait_items) => check_trait_items(cx, item, trait_items),
|
|
|
|
|
ItemImpl(_, _, _, None, _, ref impl_items) => check_impl_items(cx, item, impl_items),
|
|
|
|
|
_ => (),
|
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) {
|
2016-02-24 13:53:15 -06:00
|
|
|
|
if in_macro(cx, expr.span) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2016-04-14 13:14:03 -05:00
|
|
|
|
if let ExprBinary(Spanned { node: cmp, .. }, ref left, ref right) = expr.node {
|
2015-09-06 13:57:06 -05:00
|
|
|
|
match cmp {
|
|
|
|
|
BiEq => check_cmp(cx, expr.span, left, right, ""),
|
|
|
|
|
BiGt | BiNe => check_cmp(cx, expr.span, left, right, "!"),
|
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
|
|
|
|
}
|
|
|
|
|
|
2017-01-04 15:06:38 -06:00
|
|
|
|
fn check_trait_items(cx: &LateContext, item: &Item, trait_items: &[TraitItemRef]) {
|
|
|
|
|
fn is_named_self(cx: &LateContext, item: &TraitItemRef, name: &str) -> bool {
|
|
|
|
|
&*item.name.as_str() == name &&
|
|
|
|
|
if let AssociatedItemKind::Method { has_self } = item.kind {
|
|
|
|
|
has_self &&
|
|
|
|
|
{
|
|
|
|
|
let did = cx.tcx.map.local_def_id(item.id.node_id);
|
|
|
|
|
let impl_ty = cx.tcx.item_type(did);
|
|
|
|
|
impl_ty.fn_args().skip_binder().len() == 1
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
false
|
2016-01-03 22:26:12 -06:00
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
|
|
|
|
|
2017-01-04 15:06:38 -06:00
|
|
|
|
if !trait_items.iter().any(|i| is_named_self(cx, i, "is_empty")) {
|
|
|
|
|
if let Some(i) = trait_items.iter().find(|i| is_named_self(cx, i, "len")) {
|
2017-01-04 15:46:41 -06:00
|
|
|
|
if cx.access_levels.is_exported(i.id.node_id) {
|
2016-01-03 22:26:12 -06:00
|
|
|
|
span_lint(cx,
|
|
|
|
|
LEN_WITHOUT_IS_EMPTY,
|
|
|
|
|
i.span,
|
2016-12-20 11:21:30 -06:00
|
|
|
|
&format!("trait `{}` has a `len` method but no `is_empty` method", item.name));
|
2015-08-11 13:22:20 -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
|
|
|
|
}
|
|
|
|
|
|
2016-11-19 17:13:08 -06:00
|
|
|
|
fn check_impl_items(cx: &LateContext, item: &Item, impl_items: &[ImplItemRef]) {
|
|
|
|
|
fn is_named_self(cx: &LateContext, item: &ImplItemRef, name: &str) -> bool {
|
2016-11-23 14:19:03 -06:00
|
|
|
|
&*item.name.as_str() == name &&
|
2016-11-19 17:13:08 -06:00
|
|
|
|
if let AssociatedItemKind::Method { has_self } = item.kind {
|
2016-12-20 11:21:30 -06:00
|
|
|
|
has_self &&
|
|
|
|
|
{
|
2016-11-19 17:13:08 -06:00
|
|
|
|
let did = cx.tcx.map.local_def_id(item.id.node_id);
|
|
|
|
|
let impl_ty = cx.tcx.item_type(did);
|
|
|
|
|
impl_ty.fn_args().skip_binder().len() == 1
|
|
|
|
|
}
|
2016-01-03 22:26:12 -06:00
|
|
|
|
} else {
|
|
|
|
|
false
|
|
|
|
|
}
|
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) {
|
2016-11-16 14:57:56 -06:00
|
|
|
|
let def_id = cx.tcx.map.local_def_id(item.id);
|
|
|
|
|
let ty = cx.tcx.item_type(def_id);
|
2016-08-29 16:06:59 -05:00
|
|
|
|
|
|
|
|
|
span_lint(cx,
|
|
|
|
|
LEN_WITHOUT_IS_EMPTY,
|
|
|
|
|
i.span,
|
2016-12-20 11:21:30 -06:00
|
|
|
|
&format!("item `{}` has a public `len` method but {} `is_empty` method", ty, is_empty));
|
2015-08-11 13:22:20 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
2015-05-20 01:52:19 -05:00
|
|
|
|
}
|
|
|
|
|
|
2015-09-28 00:11:03 -05:00
|
|
|
|
fn check_cmp(cx: &LateContext, span: Span, left: &Expr, right: &Expr, op: &str) {
|
|
|
|
|
// check if we are in an is_empty() method
|
2015-09-06 14:03:09 -05:00
|
|
|
|
if let Some(name) = get_item_name(cx, left) {
|
2016-11-23 14:19:03 -06:00
|
|
|
|
if &*name.as_str() == "is_empty" {
|
2016-01-03 22:26:12 -06:00
|
|
|
|
return;
|
|
|
|
|
}
|
2015-09-06 13:57:06 -05:00
|
|
|
|
}
|
2015-08-11 13:22:20 -05:00
|
|
|
|
match (&left.node, &right.node) {
|
2016-02-09 17:38:53 -06:00
|
|
|
|
(&ExprLit(ref lit), &ExprMethodCall(ref method, _, ref args)) |
|
2016-01-03 22:26:12 -06:00
|
|
|
|
(&ExprMethodCall(ref method, _, ref args), &ExprLit(ref lit)) => {
|
|
|
|
|
check_len_zero(cx, span, &method.node, args, lit, op)
|
2016-12-20 11:21:30 -06: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
|
|
|
|
}
|
|
|
|
|
|
2016-11-23 15:44:00 -06:00
|
|
|
|
fn check_len_zero(cx: &LateContext, span: Span, name: &Name, args: &[Expr], lit: &Lit, op: &str) {
|
2016-04-14 13:14:03 -05:00
|
|
|
|
if let Spanned { node: LitKind::Int(0, _), .. } = *lit {
|
2016-11-23 14:19:03 -06:00
|
|
|
|
if &*name.as_str() == "len" && args.len() == 1 && has_is_empty(cx, &args[0]) {
|
2016-02-29 05:19:32 -06:00
|
|
|
|
span_lint_and_then(cx, LEN_ZERO, span, "length comparison to zero", |db| {
|
|
|
|
|
db.span_suggestion(span,
|
|
|
|
|
"consider using `is_empty`",
|
|
|
|
|
format!("{}{}.is_empty()", op, snippet(cx, args[0].span, "_")));
|
|
|
|
|
});
|
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.
|
2015-09-18 21:53:04 -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)`.
|
|
|
|
|
fn is_is_empty(cx: &LateContext, item: &ty::AssociatedItem) -> bool {
|
|
|
|
|
if let ty::AssociatedKind::Method = item.kind {
|
2016-11-23 14:19:03 -06:00
|
|
|
|
if &*item.name.as_str() == "is_empty" {
|
2016-11-16 14:57:56 -06:00
|
|
|
|
let ty = cx.tcx.item_type(item.def_id).fn_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.
|
2016-09-21 19:51:12 -05:00
|
|
|
|
fn has_is_empty_impl(cx: &LateContext, id: DefId) -> bool {
|
2016-12-20 11:21:30 -06:00
|
|
|
|
cx.tcx.inherent_impls.borrow().get(&id).map_or(false, |impls| {
|
|
|
|
|
impls.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 {
|
2016-12-06 04:32:21 -06:00
|
|
|
|
ty::TyDynamic(..) => {
|
2016-01-03 22:26:12 -06:00
|
|
|
|
cx.tcx
|
2016-12-20 11:21:30 -06:00
|
|
|
|
.associated_items(ty.ty_to_def_id().expect("trait impl not found"))
|
|
|
|
|
.any(|item| is_is_empty(cx, &item))
|
|
|
|
|
},
|
2016-09-21 19:51:12 -05:00
|
|
|
|
ty::TyProjection(_) => ty.ty_to_def_id().map_or(false, |id| has_is_empty_impl(cx, id)),
|
|
|
|
|
ty::TyAdt(id, _) => has_is_empty_impl(cx, id.did),
|
2016-03-12 14:12:35 -06:00
|
|
|
|
ty::TyArray(..) | ty::TyStr => true,
|
2015-08-11 13:22:20 -05:00
|
|
|
|
_ => false,
|
|
|
|
|
}
|
2015-06-01 00:40:33 -05:00
|
|
|
|
}
|