2021-03-25 18:29:11 +00:00
|
|
|
|
use clippy_utils::diagnostics::{span_lint, span_lint_and_sugg, span_lint_and_then};
|
|
|
|
|
use clippy_utils::source::snippet_with_applicability;
|
2021-07-15 08:44:10 +00:00
|
|
|
|
use clippy_utils::{get_item_name, get_parent_as_impl, is_lint_allowed};
|
2021-03-12 14:30:50 +00:00
|
|
|
|
use if_chain::if_chain;
|
2020-05-08 11:57:01 +00:00
|
|
|
|
use rustc_ast::ast::LitKind;
|
2018-12-29 15:04:45 +00:00
|
|
|
|
use rustc_errors::Applicability;
|
2021-04-08 15:50:13 +00:00
|
|
|
|
use rustc_hir::def_id::DefIdSet;
|
2021-03-12 14:30:50 +00:00
|
|
|
|
use rustc_hir::{
|
|
|
|
|
def_id::DefId, AssocItemKind, BinOpKind, Expr, ExprKind, FnRetTy, ImplItem, ImplItemKind, ImplicitSelfKind, Item,
|
|
|
|
|
ItemKind, Mutability, Node, TraitItemRef, TyKind,
|
|
|
|
|
};
|
2020-01-12 06:08:41 +00:00
|
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2022-01-25 07:42:52 +00:00
|
|
|
|
use rustc_middle::ty::{self, AssocKind, FnSig, Ty};
|
2020-01-11 11:37:08 +00:00
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2021-04-08 15:50:13 +00:00
|
|
|
|
use rustc_span::{
|
|
|
|
|
source_map::{Span, Spanned, Symbol},
|
|
|
|
|
symbol::sym,
|
|
|
|
|
};
|
2015-05-20 06:52:19 +00:00
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
|
/// ### What it does
|
|
|
|
|
/// Checks for getting the length of something via `.len()`
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// just to compare to zero, and suggests using `.is_empty()` where applicable.
|
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
|
/// ### 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
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
|
/// ### 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() {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2019-03-05 16:50:33 +00:00
|
|
|
|
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! {
|
2021-07-29 10:16:06 +00:00
|
|
|
|
/// ### What it does
|
|
|
|
|
/// Checks for items that implement `.len()` but not
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// `.is_empty()`.
|
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
|
/// ### Why is this bad?
|
|
|
|
|
/// It is good custom to have both methods, because for
|
2019-03-05 16:50:33 +00:00
|
|
|
|
/// 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.
|
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
|
/// ### 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 {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
|
#[clippy::version = "pre 1.29.0"]
|
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
|
|
|
|
|
2020-11-05 13:29:48 +00:00
|
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
|
/// ### What it does
|
|
|
|
|
/// Checks for comparing to an empty slice such as `""` or `[]`,
|
2020-11-05 13:29:48 +00:00
|
|
|
|
/// and suggests using `.is_empty()` where applicable.
|
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
|
/// ### Why is this bad?
|
|
|
|
|
/// Some structures can answer `.is_empty()` much faster
|
2020-11-05 13:29:48 +00:00
|
|
|
|
/// than checking for equality. 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.
|
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
|
/// ### Example
|
2020-11-05 13:29:48 +00:00
|
|
|
|
///
|
|
|
|
|
/// ```ignore
|
|
|
|
|
/// if s == "" {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
///
|
|
|
|
|
/// if arr == [] {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
|
|
|
|
/// Use instead:
|
|
|
|
|
/// ```ignore
|
|
|
|
|
/// if s.is_empty() {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
///
|
|
|
|
|
/// if arr.is_empty() {
|
|
|
|
|
/// ..
|
|
|
|
|
/// }
|
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
|
#[clippy::version = "1.49.0"]
|
2020-11-05 13:29:48 +00:00
|
|
|
|
pub COMPARISON_TO_EMPTY,
|
|
|
|
|
style,
|
|
|
|
|
"checking `x == \"\"` or `x == []` (or similar) when `.is_empty()` could be used instead"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
declare_lint_pass!(LenZero => [LEN_ZERO, LEN_WITHOUT_IS_EMPTY, COMPARISON_TO_EMPTY]);
|
2015-08-11 18:22:20 +00:00
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
impl<'tcx> LateLintPass<'tcx> for LenZero {
|
|
|
|
|
fn check_item(&mut self, cx: &LateContext<'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;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
|
if let ItemKind::Trait(_, _, _, _, trait_items) = item.kind {
|
2021-03-12 14:30:50 +00:00
|
|
|
|
check_trait_items(cx, item, trait_items);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn check_impl_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx ImplItem<'_>) {
|
|
|
|
|
if_chain! {
|
2021-07-01 16:17:38 +00:00
|
|
|
|
if item.ident.name == sym::len;
|
2021-03-12 14:30:50 +00:00
|
|
|
|
if let ImplItemKind::Fn(sig, _) = &item.kind;
|
|
|
|
|
if sig.decl.implicit_self.has_implicit_self();
|
2021-07-28 22:07:32 +00:00
|
|
|
|
if cx.access_levels.is_exported(item.def_id);
|
2021-03-12 14:30:50 +00:00
|
|
|
|
if matches!(sig.decl.output, FnRetTy::Return(_));
|
|
|
|
|
if let Some(imp) = get_parent_as_impl(cx.tcx, item.hir_id());
|
|
|
|
|
if imp.of_trait.is_none();
|
|
|
|
|
if let TyKind::Path(ty_path) = &imp.self_ty.kind;
|
|
|
|
|
if let Some(ty_id) = cx.qpath_res(ty_path, imp.self_ty.hir_id).opt_def_id();
|
|
|
|
|
if let Some(local_id) = ty_id.as_local();
|
|
|
|
|
let ty_hir_id = cx.tcx.hir().local_def_id_to_hir_id(local_id);
|
2021-07-15 08:44:10 +00:00
|
|
|
|
if !is_lint_allowed(cx, LEN_WITHOUT_IS_EMPTY, ty_hir_id);
|
2021-04-08 15:50:13 +00:00
|
|
|
|
if let Some(output) = parse_len_output(cx, cx.tcx.fn_sig(item.def_id).skip_binder());
|
2021-03-12 14:30:50 +00:00
|
|
|
|
then {
|
|
|
|
|
let (name, kind) = match cx.tcx.hir().find(ty_hir_id) {
|
|
|
|
|
Some(Node::ForeignItem(x)) => (x.ident.name, "extern type"),
|
|
|
|
|
Some(Node::Item(x)) => match x.kind {
|
|
|
|
|
ItemKind::Struct(..) => (x.ident.name, "struct"),
|
|
|
|
|
ItemKind::Enum(..) => (x.ident.name, "enum"),
|
|
|
|
|
ItemKind::Union(..) => (x.ident.name, "union"),
|
|
|
|
|
_ => (x.ident.name, "type"),
|
|
|
|
|
}
|
|
|
|
|
_ => return,
|
|
|
|
|
};
|
2021-04-08 15:50:13 +00:00
|
|
|
|
check_for_is_empty(cx, sig.span, sig.decl.implicit_self, output, ty_id, name, kind)
|
2021-03-12 14:30:50 +00:00
|
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'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;
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
|
if let ExprKind::Binary(Spanned { node: cmp, .. }, left, 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
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn check_trait_items(cx: &LateContext<'_>, visited_trait: &Item<'_>, trait_items: &[TraitItemRef]) {
|
2021-07-01 16:17:38 +00:00
|
|
|
|
fn is_named_self(cx: &LateContext<'_>, item: &TraitItemRef, name: Symbol) -> bool {
|
|
|
|
|
item.ident.name == name
|
2020-04-14 10:25:45 +00:00
|
|
|
|
&& if let AssocItemKind::Fn { has_self } = item.kind {
|
2021-01-30 19:46:50 +00:00
|
|
|
|
has_self && { cx.tcx.fn_sig(item.id.def_id).inputs().skip_binder().len() == 1 }
|
2018-11-27 20:14:15 +00:00
|
|
|
|
} 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
|
2021-04-08 15:50:13 +00:00
|
|
|
|
fn fill_trait_set(traitt: DefId, set: &mut DefIdSet, 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
|
|
|
|
|
2021-08-12 09:16:25 +00:00
|
|
|
|
if cx.access_levels.is_exported(visited_trait.def_id) && trait_items.iter().any(|i| is_named_self(cx, i, sym::len))
|
2021-07-01 16:17:38 +00:00
|
|
|
|
{
|
2021-04-08 15:50:13 +00:00
|
|
|
|
let mut current_and_super_traits = DefIdSet::default();
|
2021-01-30 16:47:51 +00:00
|
|
|
|
fill_trait_set(visited_trait.def_id.to_def_id(), &mut current_and_super_traits, cx);
|
2021-11-18 22:33:49 +00:00
|
|
|
|
let is_empty = sym!(is_empty);
|
2017-08-28 21:13:56 +00:00
|
|
|
|
|
|
|
|
|
let is_empty_method_found = current_and_super_traits
|
|
|
|
|
.iter()
|
2021-11-18 22:33:49 +00:00
|
|
|
|
.flat_map(|&i| cx.tcx.associated_items(i).filter_by_name_unhygienic(is_empty))
|
2017-09-04 15:05:47 +00:00
|
|
|
|
.any(|i| {
|
2020-04-14 10:25:45 +00:00
|
|
|
|
i.kind == ty::AssocKind::Fn
|
|
|
|
|
&& i.fn_has_self_parameter
|
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
|
|
|
|
}
|
|
|
|
|
|
2021-04-08 15:50:13 +00:00
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
|
|
|
enum LenOutput<'tcx> {
|
|
|
|
|
Integral,
|
|
|
|
|
Option(DefId),
|
|
|
|
|
Result(DefId, Ty<'tcx>),
|
|
|
|
|
}
|
2022-01-13 12:18:19 +00:00
|
|
|
|
fn parse_len_output<'tcx>(cx: &LateContext<'_>, sig: FnSig<'tcx>) -> Option<LenOutput<'tcx>> {
|
2021-04-08 15:50:13 +00:00
|
|
|
|
match *sig.output().kind() {
|
|
|
|
|
ty::Int(_) | ty::Uint(_) => Some(LenOutput::Integral),
|
2022-03-04 20:28:41 +00:00
|
|
|
|
ty::Adt(adt, subs) if cx.tcx.is_diagnostic_item(sym::Option, adt.did()) => {
|
|
|
|
|
subs.type_at(0).is_integral().then(|| LenOutput::Option(adt.did()))
|
2021-04-08 15:50:13 +00:00
|
|
|
|
},
|
2022-03-04 20:28:41 +00:00
|
|
|
|
ty::Adt(adt, subs) if cx.tcx.is_diagnostic_item(sym::Result, adt.did()) => subs
|
2021-04-08 15:50:13 +00:00
|
|
|
|
.type_at(0)
|
|
|
|
|
.is_integral()
|
2022-03-04 20:28:41 +00:00
|
|
|
|
.then(|| LenOutput::Result(adt.did(), subs.type_at(1))),
|
2021-04-08 15:50:13 +00:00
|
|
|
|
_ => None,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-23 15:48:17 +00:00
|
|
|
|
impl<'tcx> LenOutput<'tcx> {
|
|
|
|
|
fn matches_is_empty_output(self, ty: Ty<'tcx>) -> bool {
|
2021-04-08 15:50:13 +00:00
|
|
|
|
match (self, ty.kind()) {
|
|
|
|
|
(_, &ty::Bool) => true,
|
2022-03-04 20:28:41 +00:00
|
|
|
|
(Self::Option(id), &ty::Adt(adt, subs)) if id == adt.did() => subs.type_at(0).is_bool(),
|
|
|
|
|
(Self::Result(id, err_ty), &ty::Adt(adt, subs)) if id == adt.did() => {
|
2022-01-25 07:42:52 +00:00
|
|
|
|
subs.type_at(0).is_bool() && subs.type_at(1) == err_ty
|
2021-04-08 15:50:13 +00:00
|
|
|
|
},
|
|
|
|
|
_ => false,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn expected_sig(self, self_kind: ImplicitSelfKind) -> String {
|
|
|
|
|
let self_ref = match self_kind {
|
|
|
|
|
ImplicitSelfKind::ImmRef => "&",
|
|
|
|
|
ImplicitSelfKind::MutRef => "&mut ",
|
|
|
|
|
_ => "",
|
|
|
|
|
};
|
|
|
|
|
match self {
|
|
|
|
|
Self::Integral => format!("expected signature: `({}self) -> bool`", self_ref),
|
|
|
|
|
Self::Option(_) => format!(
|
|
|
|
|
"expected signature: `({}self) -> bool` or `({}self) -> Option<bool>",
|
|
|
|
|
self_ref, self_ref
|
|
|
|
|
),
|
|
|
|
|
Self::Result(..) => format!(
|
|
|
|
|
"expected signature: `({}self) -> bool` or `({}self) -> Result<bool>",
|
|
|
|
|
self_ref, self_ref
|
|
|
|
|
),
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
|
/// Checks if the given signature matches the expectations for `is_empty`
|
2022-05-23 15:48:17 +00:00
|
|
|
|
fn check_is_empty_sig<'tcx>(sig: FnSig<'tcx>, self_kind: ImplicitSelfKind, len_output: LenOutput<'tcx>) -> bool {
|
2021-03-12 14:30:50 +00:00
|
|
|
|
match &**sig.inputs_and_output {
|
Overhaul `TyS` and `Ty`.
Specifically, change `Ty` from this:
```
pub type Ty<'tcx> = &'tcx TyS<'tcx>;
```
to this
```
pub struct Ty<'tcx>(Interned<'tcx, TyS<'tcx>>);
```
There are two benefits to this.
- It's now a first class type, so we can define methods on it. This
means we can move a lot of methods away from `TyS`, leaving `TyS` as a
barely-used type, which is appropriate given that it's not meant to
be used directly.
- The uniqueness requirement is now explicit, via the `Interned` type.
E.g. the pointer-based `Eq` and `Hash` comes from `Interned`, rather
than via `TyS`, which wasn't obvious at all.
Much of this commit is boring churn. The interesting changes are in
these files:
- compiler/rustc_middle/src/arena.rs
- compiler/rustc_middle/src/mir/visit.rs
- compiler/rustc_middle/src/ty/context.rs
- compiler/rustc_middle/src/ty/mod.rs
Specifically:
- Most mentions of `TyS` are removed. It's very much a dumb struct now;
`Ty` has all the smarts.
- `TyS` now has `crate` visibility instead of `pub`.
- `TyS::make_for_test` is removed in favour of the static `BOOL_TY`,
which just works better with the new structure.
- The `Eq`/`Ord`/`Hash` impls are removed from `TyS`. `Interned`s impls
of `Eq`/`Hash` now suffice. `Ord` is now partly on `Interned`
(pointer-based, for the `Equal` case) and partly on `TyS`
(contents-based, for the other cases).
- There are many tedious sigil adjustments, i.e. adding or removing `*`
or `&`. They seem to be unavoidable.
2022-01-25 03:13:38 +00:00
|
|
|
|
[arg, res] if len_output.matches_is_empty_output(*res) => {
|
2021-03-12 14:30:50 +00:00
|
|
|
|
matches!(
|
|
|
|
|
(arg.kind(), self_kind),
|
|
|
|
|
(ty::Ref(_, _, Mutability::Not), ImplicitSelfKind::ImmRef)
|
|
|
|
|
| (ty::Ref(_, _, Mutability::Mut), ImplicitSelfKind::MutRef)
|
|
|
|
|
) || (!arg.is_ref() && matches!(self_kind, ImplicitSelfKind::Imm | ImplicitSelfKind::Mut))
|
|
|
|
|
},
|
|
|
|
|
_ => false,
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
2021-03-12 14:30:50 +00:00
|
|
|
|
}
|
2015-08-11 18:22:20 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
|
/// Checks if the given type has an `is_empty` method with the appropriate signature.
|
2022-05-23 15:48:17 +00:00
|
|
|
|
fn check_for_is_empty<'tcx>(
|
|
|
|
|
cx: &LateContext<'tcx>,
|
2021-03-12 14:30:50 +00:00
|
|
|
|
span: Span,
|
|
|
|
|
self_kind: ImplicitSelfKind,
|
2022-05-23 15:48:17 +00:00
|
|
|
|
output: LenOutput<'tcx>,
|
2021-03-12 14:30:50 +00:00
|
|
|
|
impl_ty: DefId,
|
|
|
|
|
item_name: Symbol,
|
|
|
|
|
item_kind: &str,
|
|
|
|
|
) {
|
|
|
|
|
let is_empty = Symbol::intern("is_empty");
|
|
|
|
|
let is_empty = cx
|
|
|
|
|
.tcx
|
|
|
|
|
.inherent_impls(impl_ty)
|
|
|
|
|
.iter()
|
|
|
|
|
.flat_map(|&id| cx.tcx.associated_items(id).filter_by_name_unhygienic(is_empty))
|
|
|
|
|
.find(|item| item.kind == AssocKind::Fn);
|
2016-08-29 21:06:59 +00:00
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
|
let (msg, is_empty_span, self_kind) = match is_empty {
|
|
|
|
|
None => (
|
|
|
|
|
format!(
|
|
|
|
|
"{} `{}` has a public `len` method, but no `is_empty` method",
|
|
|
|
|
item_kind,
|
|
|
|
|
item_name.as_str(),
|
|
|
|
|
),
|
|
|
|
|
None,
|
|
|
|
|
None,
|
|
|
|
|
),
|
2021-08-12 09:16:25 +00:00
|
|
|
|
Some(is_empty) if !cx.access_levels.is_exported(is_empty.def_id.expect_local()) => (
|
|
|
|
|
format!(
|
|
|
|
|
"{} `{}` has a public `len` method, but a private `is_empty` method",
|
|
|
|
|
item_kind,
|
|
|
|
|
item_name.as_str(),
|
|
|
|
|
),
|
|
|
|
|
Some(cx.tcx.def_span(is_empty.def_id)),
|
|
|
|
|
None,
|
|
|
|
|
),
|
2021-03-12 14:30:50 +00:00
|
|
|
|
Some(is_empty)
|
|
|
|
|
if !(is_empty.fn_has_self_parameter
|
2021-04-08 15:50:13 +00:00
|
|
|
|
&& check_is_empty_sig(cx.tcx.fn_sig(is_empty.def_id).skip_binder(), self_kind, output)) =>
|
2021-03-12 14:30:50 +00:00
|
|
|
|
{
|
|
|
|
|
(
|
|
|
|
|
format!(
|
|
|
|
|
"{} `{}` has a public `len` method, but the `is_empty` method has an unexpected signature",
|
|
|
|
|
item_kind,
|
|
|
|
|
item_name.as_str(),
|
|
|
|
|
),
|
|
|
|
|
Some(cx.tcx.def_span(is_empty.def_id)),
|
|
|
|
|
Some(self_kind),
|
|
|
|
|
)
|
|
|
|
|
},
|
|
|
|
|
Some(_) => return,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
span_lint_and_then(cx, LEN_WITHOUT_IS_EMPTY, span, &msg, |db| {
|
|
|
|
|
if let Some(span) = is_empty_span {
|
|
|
|
|
db.span_note(span, "`is_empty` defined here");
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
2021-03-12 14:30:50 +00:00
|
|
|
|
if let Some(self_kind) = self_kind {
|
2021-04-08 15:50:13 +00:00
|
|
|
|
db.note(&output.expected_sig(self_kind));
|
2021-03-12 14:30:50 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
2015-05-20 06:52:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn check_cmp(cx: &LateContext<'_>, span: Span, method: &Expr<'_>, lit: &Expr<'_>, op: &str, compare_to: u32) {
|
2022-09-02 13:48:14 +00:00
|
|
|
|
if let (&ExprKind::MethodCall(method_path, receiver, 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
|
|
|
|
|
2022-09-02 13:48:14 +00:00
|
|
|
|
check_len(cx, span, method_path.ident.name, receiver, args, &lit.node, op, compare_to);
|
2020-11-05 13:29:48 +00:00
|
|
|
|
} else {
|
2021-06-03 06:41:37 +00:00
|
|
|
|
check_empty_expr(cx, span, method, lit, op);
|
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(
|
2020-06-25 20:41:36 +00:00
|
|
|
|
cx: &LateContext<'_>,
|
2018-11-27 14:13:57 +00:00
|
|
|
|
span: Span,
|
2020-05-08 11:57:01 +00:00
|
|
|
|
method_name: Symbol,
|
2022-09-01 09:43:35 +00:00
|
|
|
|
receiver: &Expr<'_>,
|
2022-09-02 13:48:14 +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;
|
|
|
|
|
}
|
|
|
|
|
|
2022-09-02 13:48:14 +00:00
|
|
|
|
if method_name == sym::len && args.is_empty() && has_is_empty(cx, receiver) {
|
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,
|
2022-09-01 09:43:35 +00:00
|
|
|
|
snippet_with_applicability(cx, receiver.span, "_", &mut applicability)
|
2018-11-27 20:14:15 +00:00
|
|
|
|
),
|
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
|
|
|
|
|
2020-11-05 13:29:48 +00:00
|
|
|
|
fn check_empty_expr(cx: &LateContext<'_>, span: Span, lit1: &Expr<'_>, lit2: &Expr<'_>, op: &str) {
|
|
|
|
|
if (is_empty_array(lit2) || is_empty_string(lit2)) && has_is_empty(cx, lit1) {
|
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
|
span_lint_and_sugg(
|
|
|
|
|
cx,
|
|
|
|
|
COMPARISON_TO_EMPTY,
|
|
|
|
|
span,
|
|
|
|
|
"comparison to empty slice",
|
|
|
|
|
&format!("using `{}is_empty` is clearer and more explicit", op),
|
|
|
|
|
format!(
|
|
|
|
|
"{}{}.is_empty()",
|
|
|
|
|
op,
|
|
|
|
|
snippet_with_applicability(cx, lit1.span, "_", &mut applicability)
|
|
|
|
|
),
|
|
|
|
|
applicability,
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn is_empty_string(expr: &Expr<'_>) -> bool {
|
|
|
|
|
if let ExprKind::Lit(ref lit) = expr.kind {
|
|
|
|
|
if let LitKind::Str(lit, _) = lit.node {
|
|
|
|
|
let lit = lit.as_str();
|
2021-12-30 14:10:43 +00:00
|
|
|
|
return lit.is_empty();
|
2020-11-05 13:29:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn is_empty_array(expr: &Expr<'_>) -> bool {
|
2021-04-08 15:50:13 +00:00
|
|
|
|
if let ExprKind::Array(arr) = expr.kind {
|
2020-11-05 13:29:48 +00:00
|
|
|
|
return arr.is_empty();
|
|
|
|
|
}
|
|
|
|
|
false
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
|
/// Checks if this type has an `is_empty` method.
|
2020-06-25 20:41:36 +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)`.
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn is_is_empty(cx: &LateContext<'_>, item: &ty::AssocItem) -> bool {
|
2021-11-18 22:33:49 +00:00
|
|
|
|
if item.kind == ty::AssocKind::Fn {
|
2021-10-07 09:21:30 +00:00
|
|
|
|
let sig = cx.tcx.fn_sig(item.def_id);
|
|
|
|
|
let ty = sig.skip_binder();
|
|
|
|
|
ty.inputs().len() == 1
|
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.
|
2020-06-25 20:41:36 +00:00
|
|
|
|
fn has_is_empty_impl(cx: &LateContext<'_>, id: DefId) -> bool {
|
2021-11-18 22:33:49 +00:00
|
|
|
|
let is_empty = sym!(is_empty);
|
2020-02-21 05:20:49 +00:00
|
|
|
|
cx.tcx.inherent_impls(id).iter().any(|imp| {
|
|
|
|
|
cx.tcx
|
|
|
|
|
.associated_items(*imp)
|
2021-11-18 22:33:49 +00:00
|
|
|
|
.filter_by_name_unhygienic(is_empty)
|
2021-04-08 15:50:13 +00:00
|
|
|
|
.any(|item| is_is_empty(cx, item))
|
2020-02-21 05:20:49 +00:00
|
|
|
|
})
|
2015-08-11 18:22:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-24 12:49:22 +00:00
|
|
|
|
let ty = &cx.typeck_results().expr_ty(expr).peel_refs();
|
2020-08-03 22:18:29 +00:00
|
|
|
|
match ty.kind() {
|
2021-04-08 15:50:13 +00:00
|
|
|
|
ty::Dynamic(tt, ..) => tt.principal().map_or(false, |principal| {
|
2021-11-18 22:33:49 +00:00
|
|
|
|
let is_empty = sym!(is_empty);
|
2020-07-14 12:59:59 +00:00
|
|
|
|
cx.tcx
|
|
|
|
|
.associated_items(principal.def_id())
|
2021-11-18 22:33:49 +00:00
|
|
|
|
.filter_by_name_unhygienic(is_empty)
|
2021-04-08 15:50:13 +00:00
|
|
|
|
.any(|item| is_is_empty(cx, item))
|
2020-07-14 12:59:59 +00:00
|
|
|
|
}),
|
2018-08-22 21:34:52 +00:00
|
|
|
|
ty::Projection(ref proj) => has_is_empty_impl(cx, proj.item_def_id),
|
2022-03-04 20:28:41 +00:00
|
|
|
|
ty::Adt(id, _) => has_is_empty_impl(cx, id.did()),
|
2018-08-22 21:34:52 +00:00
|
|
|
|
ty::Array(..) | ty::Slice(..) | ty::Str => true,
|
2015-08-11 18:22:20 +00:00
|
|
|
|
_ => false,
|
|
|
|
|
}
|
2015-06-01 05:40:33 +00:00
|
|
|
|
}
|