2021-06-03 06:41:37 +00:00
|
|
|
use clippy_utils::consts::{constant, Constant};
|
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, snippet_opt, snippet_with_applicability};
|
|
|
|
use clippy_utils::sugg::Sugg;
|
2022-01-06 15:31:38 +00:00
|
|
|
use clippy_utils::{get_parent_expr, in_constant, is_integer_const, meets_msrv, msrvs, path_to_local};
|
2021-03-25 18:29:11 +00:00
|
|
|
use clippy_utils::{higher, SpanlessEq};
|
2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2020-03-01 03:23:33 +00:00
|
|
|
use rustc_ast::ast::RangeLimits;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc_errors::Applicability;
|
2022-01-06 15:31:38 +00:00
|
|
|
use rustc_hir::{BinOpKind, Expr, ExprKind, HirId, PathSegment, QPath};
|
2021-12-04 15:09:15 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-05-17 15:36:26 +00:00
|
|
|
use rustc_middle::ty;
|
2020-12-20 16:19:49 +00:00
|
|
|
use rustc_semver::RustcVersion;
|
|
|
|
use rustc_session::{declare_tool_lint, impl_lint_pass};
|
2020-10-28 22:36:07 +00:00
|
|
|
use rustc_span::source_map::{Span, Spanned};
|
2020-11-05 13:29:48 +00:00
|
|
|
use rustc_span::sym;
|
2020-05-17 15:36:26 +00:00
|
|
|
use std::cmp::Ordering;
|
2015-08-15 16:55:25 +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 zipping a collection with the range of
|
2019-03-05 16:50:33 +00:00
|
|
|
/// `0.._.len()`.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The code is better expressed with `.enumerate()`.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```rust
|
2019-08-02 06:13:54 +00:00
|
|
|
/// # let x = vec![1];
|
|
|
|
/// x.iter().zip(0..x.len());
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```
|
2019-08-20 14:55:17 +00:00
|
|
|
/// Could be written as
|
|
|
|
/// ```rust
|
|
|
|
/// # let x = vec![1];
|
|
|
|
/// x.iter().enumerate();
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2016-08-06 08:18:36 +00:00
|
|
|
pub RANGE_ZIP_WITH_LEN,
|
2018-03-28 13:24:26 +00:00
|
|
|
complexity,
|
2016-08-06 08:18:36 +00:00
|
|
|
"zipping iterator with a range when `enumerate()` would do"
|
2015-11-03 14:42:52 +00:00
|
|
|
}
|
2015-08-15 16:55:25 +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 exclusive ranges where 1 is added to the
|
2019-01-31 01:15:29 +00:00
|
|
|
/// upper bound, e.g., `x..(y+1)`.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The code is more readable with an inclusive range
|
2019-03-05 16:50:33 +00:00
|
|
|
/// like `x..=y`.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Known problems
|
|
|
|
/// Will add unnecessary pair of parentheses when the
|
2021-08-22 12:46:15 +00:00
|
|
|
/// expression is not wrapped in a pair but starts with an opening parenthesis
|
2019-03-05 16:50:33 +00:00
|
|
|
/// and ends with a closing one.
|
2019-01-31 01:15:29 +00:00
|
|
|
/// I.e., `let _ = (f()+1)..(f()+1)` results in `let _ = ((f()+1)..=f())`.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2020-01-17 09:15:14 +00:00
|
|
|
/// Also in many cases, inclusive ranges are still slower to run than
|
|
|
|
/// exclusive ranges, because they essentially add an extra branch that
|
|
|
|
/// LLVM may fail to hoist out of the loop.
|
|
|
|
///
|
2020-07-14 12:59:59 +00:00
|
|
|
/// This will cause a warning that cannot be fixed if the consumer of the
|
|
|
|
/// range only accepts a specific range type, instead of the generic
|
|
|
|
/// `RangeBounds` trait
|
|
|
|
/// ([#3307](https://github.com/rust-lang/rust-clippy/issues/3307)).
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-08-02 06:13:54 +00:00
|
|
|
/// ```rust,ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
/// for x..(y+1) { .. }
|
|
|
|
/// ```
|
2019-08-20 14:55:17 +00:00
|
|
|
/// Could be written as
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// for x..=y { .. }
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2017-10-07 14:56:45 +00:00
|
|
|
pub RANGE_PLUS_ONE,
|
2020-01-17 09:15:14 +00:00
|
|
|
pedantic,
|
2017-10-07 14:56:45 +00:00
|
|
|
"`x..(y+1)` reads better as `x..=y`"
|
|
|
|
}
|
|
|
|
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for inclusive ranges where 1 is subtracted from
|
2019-01-31 01:15:29 +00:00
|
|
|
/// the upper bound, e.g., `x..=(y-1)`.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The code is more readable with an exclusive range
|
2019-03-05 16:50:33 +00:00
|
|
|
/// like `x..y`.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Known problems
|
|
|
|
/// This will cause a warning that cannot be fixed if
|
2020-07-14 12:59:59 +00:00
|
|
|
/// the consumer of the range only accepts a specific range type, instead of
|
|
|
|
/// the generic `RangeBounds` trait
|
|
|
|
/// ([#3307](https://github.com/rust-lang/rust-clippy/issues/3307)).
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2019-08-02 06:13:54 +00:00
|
|
|
/// ```rust,ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
/// for x..=(y-1) { .. }
|
|
|
|
/// ```
|
2019-08-20 14:55:17 +00:00
|
|
|
/// Could be written as
|
|
|
|
/// ```rust,ignore
|
|
|
|
/// for x..y { .. }
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2017-10-07 14:56:45 +00:00
|
|
|
pub RANGE_MINUS_ONE,
|
2020-07-14 12:59:59 +00:00
|
|
|
pedantic,
|
2017-10-07 14:56:45 +00:00
|
|
|
"`x..=(y-1)` reads better as `x..y`"
|
|
|
|
}
|
|
|
|
|
2020-05-17 15:36:26 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for range expressions `x..y` where both `x` and `y`
|
2020-05-17 15:36:26 +00:00
|
|
|
/// are constant and `x` is greater or equal to `y`.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Empty ranges yield no values so iterating them is a no-op.
|
2020-05-17 15:36:26 +00:00
|
|
|
/// Moreover, trying to use a reversed range to index a slice will panic at run-time.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2020-05-17 15:36:26 +00:00
|
|
|
/// ```rust,no_run
|
|
|
|
/// fn main() {
|
|
|
|
/// (10..=0).for_each(|x| println!("{}", x));
|
|
|
|
///
|
|
|
|
/// let arr = [1, 2, 3, 4, 5];
|
|
|
|
/// let sub = &arr[3..1];
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust
|
|
|
|
/// fn main() {
|
|
|
|
/// (0..=10).rev().for_each(|x| println!("{}", x));
|
|
|
|
///
|
|
|
|
/// let arr = [1, 2, 3, 4, 5];
|
|
|
|
/// let sub = &arr[1..3];
|
|
|
|
/// }
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "1.45.0"]
|
2020-05-17 15:36:26 +00:00
|
|
|
pub REVERSED_EMPTY_RANGES,
|
|
|
|
correctness,
|
|
|
|
"reversing the limits of range expressions, resulting in empty ranges"
|
|
|
|
}
|
|
|
|
|
2020-10-28 22:36:07 +00:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for expressions like `x >= 3 && x < 8` that could
|
2020-10-28 22:36:07 +00:00
|
|
|
/// be more readably expressed as `(3..8).contains(x)`.
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// `contains` expresses the intent better and has less
|
2020-10-28 22:36:07 +00:00
|
|
|
/// failure modes (such as fencepost errors or using `||` instead of `&&`).
|
|
|
|
///
|
2021-07-29 10:16:06 +00:00
|
|
|
/// ### Example
|
2020-10-28 22:36:07 +00:00
|
|
|
/// ```rust
|
|
|
|
/// // given
|
|
|
|
/// let x = 6;
|
|
|
|
///
|
|
|
|
/// assert!(x >= 3 && x < 8);
|
|
|
|
/// ```
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust
|
|
|
|
///# let x = 6;
|
|
|
|
/// assert!((3..8).contains(&x));
|
|
|
|
/// ```
|
2021-12-06 11:33:31 +00:00
|
|
|
#[clippy::version = "1.49.0"]
|
2020-10-28 22:36:07 +00:00
|
|
|
pub MANUAL_RANGE_CONTAINS,
|
|
|
|
style,
|
|
|
|
"manually reimplementing {`Range`, `RangeInclusive`}`::contains`"
|
|
|
|
}
|
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
pub struct Ranges {
|
|
|
|
msrv: Option<RustcVersion>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Ranges {
|
|
|
|
#[must_use]
|
|
|
|
pub fn new(msrv: Option<RustcVersion>) -> Self {
|
|
|
|
Self { msrv }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_lint_pass!(Ranges => [
|
2019-04-08 20:43:55 +00:00
|
|
|
RANGE_ZIP_WITH_LEN,
|
|
|
|
RANGE_PLUS_ONE,
|
2020-05-17 15:36:26 +00:00
|
|
|
RANGE_MINUS_ONE,
|
|
|
|
REVERSED_EMPTY_RANGES,
|
2020-10-28 22:36:07 +00:00
|
|
|
MANUAL_RANGE_CONTAINS,
|
2019-04-08 20:43:55 +00:00
|
|
|
]);
|
2015-08-15 16:55:25 +00:00
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for Ranges {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2020-10-28 22:36:07 +00:00
|
|
|
match expr.kind {
|
2021-12-01 17:17:50 +00:00
|
|
|
ExprKind::MethodCall(path, args, _) => {
|
2020-10-28 22:36:07 +00:00
|
|
|
check_range_zip_with_len(cx, path, args, expr.span);
|
|
|
|
},
|
2021-04-08 15:50:13 +00:00
|
|
|
ExprKind::Binary(ref op, l, r) => {
|
2021-04-27 14:55:11 +00:00
|
|
|
if meets_msrv(self.msrv.as_ref(), &msrvs::RANGE_CONTAINS) {
|
2020-12-20 16:19:49 +00:00
|
|
|
check_possible_range_contains(cx, op.node, l, r, expr);
|
|
|
|
}
|
2020-10-28 22:36:07 +00:00
|
|
|
},
|
|
|
|
_ => {},
|
2015-08-15 16:55:25 +00:00
|
|
|
}
|
2017-10-07 14:56:45 +00:00
|
|
|
|
2019-09-03 04:26:49 +00:00
|
|
|
check_exclusive_range_plus_one(cx, expr);
|
|
|
|
check_inclusive_range_minus_one(cx, expr);
|
2020-05-17 15:36:26 +00:00
|
|
|
check_reversed_empty_range(cx, expr);
|
2019-09-03 04:26:49 +00:00
|
|
|
}
|
2020-12-20 16:19:49 +00:00
|
|
|
extract_msrv_attr!(LateContext);
|
2019-09-03 04:26:49 +00:00
|
|
|
}
|
|
|
|
|
2020-12-20 16:19:49 +00:00
|
|
|
fn check_possible_range_contains(cx: &LateContext<'_>, op: BinOpKind, l: &Expr<'_>, r: &Expr<'_>, expr: &Expr<'_>) {
|
|
|
|
if in_constant(cx, expr.hir_id) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let span = expr.span;
|
2020-10-28 22:36:07 +00:00
|
|
|
let combine_and = match op {
|
|
|
|
BinOpKind::And | BinOpKind::BitAnd => true,
|
|
|
|
BinOpKind::Or | BinOpKind::BitOr => false,
|
|
|
|
_ => return,
|
|
|
|
};
|
|
|
|
// value, name, order (higher/lower), inclusiveness
|
2022-04-29 03:54:58 +00:00
|
|
|
if let (
|
|
|
|
Some((lval, lexpr, lid, name_span, lval_span, lord, linc)),
|
|
|
|
Some((rval, _, rid, _, rval_span, rord, rinc)),
|
|
|
|
) = (check_range_bounds(cx, l), check_range_bounds(cx, r))
|
2020-10-28 22:36:07 +00:00
|
|
|
{
|
|
|
|
// we only lint comparisons on the same name and with different
|
|
|
|
// direction
|
2022-01-06 15:31:38 +00:00
|
|
|
if lid != rid || lord == rord {
|
2020-10-28 22:36:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2022-04-29 03:54:58 +00:00
|
|
|
let ord = Constant::partial_cmp(cx.tcx, cx.typeck_results().expr_ty(lexpr), &lval, &rval);
|
2020-10-28 22:36:07 +00:00
|
|
|
if combine_and && ord == Some(rord) {
|
|
|
|
// order lower bound and upper bound
|
|
|
|
let (l_span, u_span, l_inc, u_inc) = if rord == Ordering::Less {
|
|
|
|
(lval_span, rval_span, linc, rinc)
|
|
|
|
} else {
|
|
|
|
(rval_span, lval_span, rinc, linc)
|
|
|
|
};
|
|
|
|
// we only lint inclusive lower bounds
|
|
|
|
if !l_inc {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let (range_type, range_op) = if u_inc {
|
|
|
|
("RangeInclusive", "..=")
|
|
|
|
} else {
|
|
|
|
("Range", "..")
|
|
|
|
};
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
let name = snippet_with_applicability(cx, name_span, "_", &mut applicability);
|
|
|
|
let lo = snippet_with_applicability(cx, l_span, "_", &mut applicability);
|
|
|
|
let hi = snippet_with_applicability(cx, u_span, "_", &mut applicability);
|
2020-11-23 12:51:04 +00:00
|
|
|
let space = if lo.ends_with('.') { " " } else { "" };
|
2020-10-28 22:36:07 +00:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MANUAL_RANGE_CONTAINS,
|
|
|
|
span,
|
|
|
|
&format!("manual `{}::contains` implementation", range_type),
|
|
|
|
"use",
|
2020-11-23 12:51:04 +00:00
|
|
|
format!("({}{}{}{}).contains(&{})", lo, space, range_op, hi, name),
|
2020-10-28 22:36:07 +00:00
|
|
|
applicability,
|
|
|
|
);
|
|
|
|
} else if !combine_and && ord == Some(lord) {
|
|
|
|
// `!_.contains(_)`
|
|
|
|
// order lower bound and upper bound
|
|
|
|
let (l_span, u_span, l_inc, u_inc) = if lord == Ordering::Less {
|
|
|
|
(lval_span, rval_span, linc, rinc)
|
|
|
|
} else {
|
|
|
|
(rval_span, lval_span, rinc, linc)
|
|
|
|
};
|
|
|
|
if l_inc {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let (range_type, range_op) = if u_inc {
|
|
|
|
("Range", "..")
|
|
|
|
} else {
|
|
|
|
("RangeInclusive", "..=")
|
|
|
|
};
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
let name = snippet_with_applicability(cx, name_span, "_", &mut applicability);
|
|
|
|
let lo = snippet_with_applicability(cx, l_span, "_", &mut applicability);
|
|
|
|
let hi = snippet_with_applicability(cx, u_span, "_", &mut applicability);
|
2020-11-23 12:51:04 +00:00
|
|
|
let space = if lo.ends_with('.') { " " } else { "" };
|
2020-10-28 22:36:07 +00:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MANUAL_RANGE_CONTAINS,
|
|
|
|
span,
|
|
|
|
&format!("manual `!{}::contains` implementation", range_type),
|
|
|
|
"use",
|
2020-11-23 12:51:04 +00:00
|
|
|
format!("!({}{}{}{}).contains(&{})", lo, space, range_op, hi, name),
|
2020-10-28 22:36:07 +00:00
|
|
|
applicability,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-29 03:54:58 +00:00
|
|
|
fn check_range_bounds<'a>(
|
|
|
|
cx: &'a LateContext<'_>,
|
|
|
|
ex: &'a Expr<'_>,
|
|
|
|
) -> Option<(Constant, &'a Expr<'a>, HirId, Span, Span, Ordering, bool)> {
|
2021-04-08 15:50:13 +00:00
|
|
|
if let ExprKind::Binary(ref op, l, r) = ex.kind {
|
2020-10-28 22:36:07 +00:00
|
|
|
let (inclusive, ordering) = match op.node {
|
|
|
|
BinOpKind::Gt => (false, Ordering::Greater),
|
|
|
|
BinOpKind::Ge => (true, Ordering::Greater),
|
|
|
|
BinOpKind::Lt => (false, Ordering::Less),
|
|
|
|
BinOpKind::Le => (true, Ordering::Less),
|
|
|
|
_ => return None,
|
|
|
|
};
|
2022-01-06 15:31:38 +00:00
|
|
|
if let Some(id) = path_to_local(l) {
|
2020-10-28 22:36:07 +00:00
|
|
|
if let Some((c, _)) = constant(cx, cx.typeck_results(), r) {
|
2022-04-29 03:54:58 +00:00
|
|
|
return Some((c, r, id, l.span, r.span, ordering, inclusive));
|
2020-10-28 22:36:07 +00:00
|
|
|
}
|
2022-01-06 15:31:38 +00:00
|
|
|
} else if let Some(id) = path_to_local(r) {
|
2020-10-28 22:36:07 +00:00
|
|
|
if let Some((c, _)) = constant(cx, cx.typeck_results(), l) {
|
2022-04-29 03:54:58 +00:00
|
|
|
return Some((c, l, id, r.span, l.span, ordering.reverse(), inclusive));
|
2020-10-28 22:36:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_range_zip_with_len(cx: &LateContext<'_>, path: &PathSegment<'_>, args: &[Expr<'_>], span: Span) {
|
2021-04-08 15:50:13 +00:00
|
|
|
if_chain! {
|
|
|
|
if path.ident.as_str() == "zip";
|
|
|
|
if let [iter, zip_arg] = args;
|
|
|
|
// `.iter()` call
|
2021-12-01 17:17:50 +00:00
|
|
|
if let ExprKind::MethodCall(iter_path, iter_args, _) = iter.kind;
|
2021-04-08 15:50:13 +00:00
|
|
|
if iter_path.ident.name == sym::iter;
|
|
|
|
// range expression in `.zip()` call: `0..x.len()`
|
2021-08-08 14:49:13 +00:00
|
|
|
if let Some(higher::Range { start: Some(start), end: Some(end), .. }) = higher::Range::hir(zip_arg);
|
2021-04-08 15:50:13 +00:00
|
|
|
if is_integer_const(cx, start, 0);
|
|
|
|
// `.len()` call
|
2021-12-01 17:17:50 +00:00
|
|
|
if let ExprKind::MethodCall(len_path, len_args, _) = end.kind;
|
2021-07-01 16:17:38 +00:00
|
|
|
if len_path.ident.name == sym::len && len_args.len() == 1;
|
2021-04-08 15:50:13 +00:00
|
|
|
// `.iter()` and `.len()` called on same `Path`
|
|
|
|
if let ExprKind::Path(QPath::Resolved(_, iter_path)) = iter_args[0].kind;
|
|
|
|
if let ExprKind::Path(QPath::Resolved(_, len_path)) = len_args[0].kind;
|
2021-08-26 15:25:14 +00:00
|
|
|
if SpanlessEq::new(cx).eq_path_segments(iter_path.segments, len_path.segments);
|
2021-04-08 15:50:13 +00:00
|
|
|
then {
|
|
|
|
span_lint(cx,
|
|
|
|
RANGE_ZIP_WITH_LEN,
|
|
|
|
span,
|
|
|
|
&format!("it is more idiomatic to use `{}.iter().enumerate()`",
|
|
|
|
snippet(cx, iter_args[0].span, "_"))
|
|
|
|
);
|
2020-10-28 22:36:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-03 04:26:49 +00:00
|
|
|
// exclusive range plus one: `x..(y+1)`
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_exclusive_range_plus_one(cx: &LateContext<'_>, expr: &Expr<'_>) {
|
2019-09-03 04:26:49 +00:00
|
|
|
if_chain! {
|
|
|
|
if let Some(higher::Range {
|
|
|
|
start,
|
|
|
|
end: Some(end),
|
|
|
|
limits: RangeLimits::HalfOpen
|
2021-08-08 14:49:13 +00:00
|
|
|
}) = higher::Range::hir(expr);
|
2019-09-09 15:01:01 +00:00
|
|
|
if let Some(y) = y_plus_one(cx, end);
|
2019-09-03 04:26:49 +00:00
|
|
|
then {
|
|
|
|
let span = if expr.span.from_expansion() {
|
|
|
|
expr.span
|
|
|
|
.ctxt()
|
|
|
|
.outer_expn_data()
|
|
|
|
.call_site
|
|
|
|
} else {
|
|
|
|
expr.span
|
|
|
|
};
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
RANGE_PLUS_ONE,
|
|
|
|
span,
|
|
|
|
"an inclusive range would be more readable",
|
2020-04-17 06:08:00 +00:00
|
|
|
|diag| {
|
2021-12-30 14:10:43 +00:00
|
|
|
let start = start.map_or(String::new(), |x| Sugg::hir(cx, x, "x").maybe_par().to_string());
|
|
|
|
let end = Sugg::hir(cx, y, "y").maybe_par();
|
2019-09-03 04:26:49 +00:00
|
|
|
if let Some(is_wrapped) = &snippet_opt(cx, span) {
|
|
|
|
if is_wrapped.starts_with('(') && is_wrapped.ends_with(')') {
|
2020-04-17 06:08:00 +00:00
|
|
|
diag.span_suggestion(
|
2019-09-03 04:26:49 +00:00
|
|
|
span,
|
|
|
|
"use",
|
|
|
|
format!("({}..={})", start, end),
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
} else {
|
2020-04-17 06:08:00 +00:00
|
|
|
diag.span_suggestion(
|
2019-09-03 04:26:49 +00:00
|
|
|
span,
|
|
|
|
"use",
|
|
|
|
format!("{}..={}", start, end),
|
|
|
|
Applicability::MachineApplicable, // snippet
|
|
|
|
);
|
2018-08-30 17:06:13 +00:00
|
|
|
}
|
2019-09-03 04:26:49 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
2019-09-03 04:26:49 +00:00
|
|
|
}
|
|
|
|
}
|
2017-10-07 14:56:45 +00:00
|
|
|
|
2019-09-03 04:26:49 +00:00
|
|
|
// inclusive range minus one: `x..=(y-1)`
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_inclusive_range_minus_one(cx: &LateContext<'_>, expr: &Expr<'_>) {
|
2019-09-03 04:26:49 +00:00
|
|
|
if_chain! {
|
2021-08-08 14:49:13 +00:00
|
|
|
if let Some(higher::Range { start, end: Some(end), limits: RangeLimits::Closed }) = higher::Range::hir(expr);
|
2019-09-09 15:01:01 +00:00
|
|
|
if let Some(y) = y_minus_one(cx, end);
|
2019-09-03 04:26:49 +00:00
|
|
|
then {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
RANGE_MINUS_ONE,
|
|
|
|
expr.span,
|
|
|
|
"an exclusive range would be more readable",
|
2020-04-17 06:08:00 +00:00
|
|
|
|diag| {
|
2021-12-30 14:10:43 +00:00
|
|
|
let start = start.map_or(String::new(), |x| Sugg::hir(cx, x, "x").maybe_par().to_string());
|
|
|
|
let end = Sugg::hir(cx, y, "y").maybe_par();
|
2020-04-17 06:08:00 +00:00
|
|
|
diag.span_suggestion(
|
2019-09-03 04:26:49 +00:00
|
|
|
expr.span,
|
|
|
|
"use",
|
|
|
|
format!("{}..{}", start, end),
|
|
|
|
Applicability::MachineApplicable, // snippet
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
2017-10-23 19:18:02 +00:00
|
|
|
}
|
2015-08-15 16:55:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_reversed_empty_range(cx: &LateContext<'_>, expr: &Expr<'_>) {
|
|
|
|
fn inside_indexing_expr(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2020-06-09 14:36:01 +00:00
|
|
|
matches!(
|
|
|
|
get_parent_expr(cx, expr),
|
|
|
|
Some(Expr {
|
2020-05-17 15:36:26 +00:00
|
|
|
kind: ExprKind::Index(..),
|
|
|
|
..
|
2020-06-09 14:36:01 +00:00
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn is_for_loop_arg(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2020-06-09 14:36:01 +00:00
|
|
|
let mut cur_expr = expr;
|
|
|
|
while let Some(parent_expr) = get_parent_expr(cx, cur_expr) {
|
2021-08-08 14:49:13 +00:00
|
|
|
match higher::ForLoop::hir(parent_expr) {
|
|
|
|
Some(higher::ForLoop { arg, .. }) if arg.hir_id == expr.hir_id => return true,
|
2020-06-09 14:36:01 +00:00
|
|
|
_ => cur_expr = parent_expr,
|
|
|
|
}
|
2020-05-28 13:45:24 +00:00
|
|
|
}
|
2020-06-09 14:36:01 +00:00
|
|
|
|
|
|
|
false
|
2020-05-17 15:36:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_empty_range(limits: RangeLimits, ordering: Ordering) -> bool {
|
|
|
|
match limits {
|
|
|
|
RangeLimits::HalfOpen => ordering != Ordering::Less,
|
|
|
|
RangeLimits::Closed => ordering == Ordering::Greater,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if_chain! {
|
2021-08-08 14:49:13 +00:00
|
|
|
if let Some(higher::Range { start: Some(start), end: Some(end), limits }) = higher::Range::hir(expr);
|
2020-07-17 08:47:04 +00:00
|
|
|
let ty = cx.typeck_results().expr_ty(start);
|
2020-08-03 22:18:29 +00:00
|
|
|
if let ty::Int(_) | ty::Uint(_) = ty.kind();
|
2020-07-17 08:47:04 +00:00
|
|
|
if let Some((start_idx, _)) = constant(cx, cx.typeck_results(), start);
|
|
|
|
if let Some((end_idx, _)) = constant(cx, cx.typeck_results(), end);
|
2020-05-17 15:36:26 +00:00
|
|
|
if let Some(ordering) = Constant::partial_cmp(cx.tcx, ty, &start_idx, &end_idx);
|
|
|
|
if is_empty_range(limits, ordering);
|
|
|
|
then {
|
2020-06-09 14:36:01 +00:00
|
|
|
if inside_indexing_expr(cx, expr) {
|
|
|
|
// Avoid linting `N..N` as it has proven to be useful, see #5689 and #5628 ...
|
|
|
|
if ordering != Ordering::Equal {
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
REVERSED_EMPTY_RANGES,
|
|
|
|
expr.span,
|
|
|
|
"this range is reversed and using it to index a slice will panic at run-time",
|
|
|
|
);
|
|
|
|
}
|
|
|
|
// ... except in for loop arguments for backwards compatibility with `reverse_range_loop`
|
|
|
|
} else if ordering != Ordering::Equal || is_for_loop_arg(cx, expr) {
|
2020-05-17 15:36:26 +00:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
REVERSED_EMPTY_RANGES,
|
|
|
|
expr.span,
|
|
|
|
"this range is empty so it will yield no values",
|
|
|
|
|diag| {
|
|
|
|
if ordering != Ordering::Equal {
|
|
|
|
let start_snippet = snippet(cx, start.span, "_");
|
|
|
|
let end_snippet = snippet(cx, end.span, "_");
|
|
|
|
let dots = match limits {
|
|
|
|
RangeLimits::HalfOpen => "..",
|
|
|
|
RangeLimits::Closed => "..="
|
|
|
|
};
|
|
|
|
|
|
|
|
diag.span_suggestion(
|
|
|
|
expr.span,
|
|
|
|
"consider using the following if you are attempting to iterate over this \
|
|
|
|
range in reverse",
|
|
|
|
format!("({}{}{}).rev()", end_snippet, dots, start_snippet),
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn y_plus_one<'t>(cx: &LateContext<'_>, expr: &'t Expr<'_>) -> Option<&'t Expr<'t>> {
|
2019-09-27 15:16:06 +00:00
|
|
|
match expr.kind {
|
2018-11-27 20:14:15 +00:00
|
|
|
ExprKind::Binary(
|
|
|
|
Spanned {
|
|
|
|
node: BinOpKind::Add, ..
|
|
|
|
},
|
2021-04-08 15:50:13 +00:00
|
|
|
lhs,
|
|
|
|
rhs,
|
2018-11-27 20:14:15 +00:00
|
|
|
) => {
|
2019-09-09 15:01:01 +00:00
|
|
|
if is_integer_const(cx, lhs, 1) {
|
2018-11-27 20:14:15 +00:00
|
|
|
Some(rhs)
|
2019-09-09 15:01:01 +00:00
|
|
|
} else if is_integer_const(cx, rhs, 1) {
|
2018-11-27 20:14:15 +00:00
|
|
|
Some(lhs)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2017-10-07 14:56:45 +00:00
|
|
|
},
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn y_minus_one<'t>(cx: &LateContext<'_>, expr: &'t Expr<'_>) -> Option<&'t Expr<'t>> {
|
2019-09-27 15:16:06 +00:00
|
|
|
match expr.kind {
|
2018-11-27 20:14:15 +00:00
|
|
|
ExprKind::Binary(
|
|
|
|
Spanned {
|
|
|
|
node: BinOpKind::Sub, ..
|
|
|
|
},
|
2021-04-08 15:50:13 +00:00
|
|
|
lhs,
|
|
|
|
rhs,
|
2019-09-09 15:01:01 +00:00
|
|
|
) if is_integer_const(cx, rhs, 1) => Some(lhs),
|
2017-10-07 14:56:45 +00:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|