2023-11-02 11:35:56 -05:00
|
|
|
use clippy_config::msrvs::{self, Msrv};
|
2021-06-03 01:41:37 -05:00
|
|
|
use clippy_utils::consts::{constant, Constant};
|
2021-03-25 13:29:11 -05: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;
|
2023-07-17 03:19:29 -05:00
|
|
|
use clippy_utils::{get_parent_expr, higher, in_constant, is_integer_const, path_to_local};
|
2020-02-29 21:23:33 -06:00
|
|
|
use rustc_ast::ast::RangeLimits;
|
2018-12-29 09:04:45 -06:00
|
|
|
use rustc_errors::Applicability;
|
2022-08-31 08:24:45 -05:00
|
|
|
use rustc_hir::{BinOpKind, Expr, ExprKind, HirId};
|
2021-12-04 09:09:15 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-05-17 10:36:26 -05:00
|
|
|
use rustc_middle::ty;
|
2023-12-01 11:21:58 -06:00
|
|
|
use rustc_session::impl_lint_pass;
|
2023-11-01 22:10:12 -05:00
|
|
|
use rustc_span::source_map::Spanned;
|
2023-11-16 12:13:24 -06:00
|
|
|
use rustc_span::Span;
|
2020-05-17 10:36:26 -05:00
|
|
|
use std::cmp::Ordering;
|
2015-08-15 11:55:25 -05:00
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for exclusive ranges where 1 is added to the
|
2019-01-30 19:15:29 -06:00
|
|
|
/// upper bound, e.g., `x..(y+1)`.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The code is more readable with an inclusive range
|
2019-03-05 10:50:33 -06:00
|
|
|
/// like `x..=y`.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Known problems
|
|
|
|
/// Will add unnecessary pair of parentheses when the
|
2021-08-22 07:46:15 -05:00
|
|
|
/// expression is not wrapped in a pair but starts with an opening parenthesis
|
2019-03-05 10:50:33 -06:00
|
|
|
/// and ends with a closing one.
|
2019-01-30 19:15:29 -06:00
|
|
|
/// I.e., `let _ = (f()+1)..(f()+1)` results in `let _ = ((f()+1)..=f())`.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2020-01-17 03:15:14 -06: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 07:59:59 -05: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 05:16:06 -05:00
|
|
|
/// ### Example
|
2023-11-02 11:35:56 -05:00
|
|
|
/// ```no_run
|
2022-06-16 10:39:06 -05:00
|
|
|
/// # let x = 0;
|
|
|
|
/// # let y = 1;
|
|
|
|
/// for i in x..(y+1) {
|
|
|
|
/// // ..
|
|
|
|
/// }
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2022-06-16 10:39:06 -05:00
|
|
|
///
|
|
|
|
/// Use instead:
|
2023-11-02 11:35:56 -05:00
|
|
|
/// ```no_run
|
2022-06-16 10:39:06 -05:00
|
|
|
/// # let x = 0;
|
|
|
|
/// # let y = 1;
|
|
|
|
/// for i in x..=y {
|
|
|
|
/// // ..
|
|
|
|
/// }
|
2019-08-20 09:55:17 -05:00
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2017-10-07 09:56:45 -05:00
|
|
|
pub RANGE_PLUS_ONE,
|
2020-01-17 03:15:14 -06:00
|
|
|
pedantic,
|
2017-10-07 09:56:45 -05:00
|
|
|
"`x..(y+1)` reads better as `x..=y`"
|
|
|
|
}
|
|
|
|
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for inclusive ranges where 1 is subtracted from
|
2019-01-30 19:15:29 -06:00
|
|
|
/// the upper bound, e.g., `x..=(y-1)`.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// The code is more readable with an exclusive range
|
2019-03-05 10:50:33 -06:00
|
|
|
/// like `x..y`.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Known problems
|
|
|
|
/// This will cause a warning that cannot be fixed if
|
2020-07-14 07:59:59 -05: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 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2023-11-02 11:35:56 -05:00
|
|
|
/// ```no_run
|
2022-06-16 10:39:06 -05:00
|
|
|
/// # let x = 0;
|
|
|
|
/// # let y = 1;
|
|
|
|
/// for i in x..=(y-1) {
|
|
|
|
/// // ..
|
|
|
|
/// }
|
2019-03-05 10:50:33 -06:00
|
|
|
/// ```
|
2022-06-16 10:39:06 -05:00
|
|
|
///
|
|
|
|
/// Use instead:
|
2023-11-02 11:35:56 -05:00
|
|
|
/// ```no_run
|
2022-06-16 10:39:06 -05:00
|
|
|
/// # let x = 0;
|
|
|
|
/// # let y = 1;
|
|
|
|
/// for i in x..y {
|
|
|
|
/// // ..
|
|
|
|
/// }
|
2019-08-20 09:55:17 -05:00
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "pre 1.29.0"]
|
2017-10-07 09:56:45 -05:00
|
|
|
pub RANGE_MINUS_ONE,
|
2020-07-14 07:59:59 -05:00
|
|
|
pedantic,
|
2017-10-07 09:56:45 -05:00
|
|
|
"`x..=(y-1)` reads better as `x..y`"
|
|
|
|
}
|
|
|
|
|
2020-05-17 10:36:26 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for range expressions `x..y` where both `x` and `y`
|
2023-01-12 12:48:13 -06:00
|
|
|
/// are constant and `x` is greater to `y`. Also triggers if `x` is equal to `y` when they are conditions to a `for` loop.
|
2020-05-17 10:36:26 -05:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Empty ranges yield no values so iterating them is a no-op.
|
2020-05-17 10:36:26 -05:00
|
|
|
/// Moreover, trying to use a reversed range to index a slice will panic at run-time.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2020-05-17 10:36:26 -05: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:
|
2023-11-02 11:35:56 -05:00
|
|
|
/// ```no_run
|
2020-05-17 10:36:26 -05:00
|
|
|
/// 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 05:33:31 -06:00
|
|
|
#[clippy::version = "1.45.0"]
|
2020-05-17 10:36:26 -05:00
|
|
|
pub REVERSED_EMPTY_RANGES,
|
|
|
|
correctness,
|
|
|
|
"reversing the limits of range expressions, resulting in empty ranges"
|
|
|
|
}
|
|
|
|
|
2020-10-28 17:36:07 -05:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for expressions like `x >= 3 && x < 8` that could
|
2020-10-28 17:36:07 -05:00
|
|
|
/// be more readably expressed as `(3..8).contains(x)`.
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// `contains` expresses the intent better and has less
|
2020-10-28 17:36:07 -05:00
|
|
|
/// failure modes (such as fencepost errors or using `||` instead of `&&`).
|
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2023-11-02 11:35:56 -05:00
|
|
|
/// ```no_run
|
2020-10-28 17:36:07 -05:00
|
|
|
/// // given
|
|
|
|
/// let x = 6;
|
|
|
|
///
|
|
|
|
/// assert!(x >= 3 && x < 8);
|
|
|
|
/// ```
|
|
|
|
/// Use instead:
|
2023-11-02 11:35:56 -05:00
|
|
|
/// ```no_run
|
2020-10-28 17:36:07 -05:00
|
|
|
///# let x = 6;
|
|
|
|
/// assert!((3..8).contains(&x));
|
|
|
|
/// ```
|
2021-12-06 05:33:31 -06:00
|
|
|
#[clippy::version = "1.49.0"]
|
2020-10-28 17:36:07 -05:00
|
|
|
pub MANUAL_RANGE_CONTAINS,
|
|
|
|
style,
|
|
|
|
"manually reimplementing {`Range`, `RangeInclusive`}`::contains`"
|
|
|
|
}
|
|
|
|
|
2020-12-20 10:19:49 -06:00
|
|
|
pub struct Ranges {
|
2022-12-01 11:29:38 -06:00
|
|
|
msrv: Msrv,
|
2020-12-20 10:19:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Ranges {
|
|
|
|
#[must_use]
|
2022-12-01 11:29:38 -06:00
|
|
|
pub fn new(msrv: Msrv) -> Self {
|
2020-12-20 10:19:49 -06:00
|
|
|
Self { msrv }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_lint_pass!(Ranges => [
|
2019-04-08 15:43:55 -05:00
|
|
|
RANGE_PLUS_ONE,
|
2020-05-17 10:36:26 -05:00
|
|
|
RANGE_MINUS_ONE,
|
|
|
|
REVERSED_EMPTY_RANGES,
|
2020-10-28 17:36:07 -05:00
|
|
|
MANUAL_RANGE_CONTAINS,
|
2019-04-08 15:43:55 -05:00
|
|
|
]);
|
2015-08-15 11:55:25 -05:00
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for Ranges {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2022-08-31 08:24:45 -05:00
|
|
|
if let ExprKind::Binary(ref op, l, r) = expr.kind {
|
2022-12-01 11:29:38 -06:00
|
|
|
if self.msrv.meets(msrvs::RANGE_CONTAINS) {
|
2022-08-31 08:24:45 -05:00
|
|
|
check_possible_range_contains(cx, op.node, l, r, expr, expr.span);
|
|
|
|
}
|
2015-08-15 11:55:25 -05:00
|
|
|
}
|
2017-10-07 09:56:45 -05:00
|
|
|
|
2019-09-02 23:26:49 -05:00
|
|
|
check_exclusive_range_plus_one(cx, expr);
|
|
|
|
check_inclusive_range_minus_one(cx, expr);
|
2020-05-17 10:36:26 -05:00
|
|
|
check_reversed_empty_range(cx, expr);
|
2019-09-02 23:26:49 -05:00
|
|
|
}
|
2020-12-20 10:19:49 -06:00
|
|
|
extract_msrv_attr!(LateContext);
|
2019-09-02 23:26:49 -05:00
|
|
|
}
|
|
|
|
|
2022-05-21 06:24:00 -05:00
|
|
|
fn check_possible_range_contains(
|
|
|
|
cx: &LateContext<'_>,
|
|
|
|
op: BinOpKind,
|
|
|
|
left: &Expr<'_>,
|
|
|
|
right: &Expr<'_>,
|
|
|
|
expr: &Expr<'_>,
|
2022-06-04 06:34:07 -05:00
|
|
|
span: Span,
|
2022-05-21 06:24:00 -05:00
|
|
|
) {
|
2020-12-20 10:19:49 -06:00
|
|
|
if in_constant(cx, expr.hir_id) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-10-28 17:36:07 -05:00
|
|
|
let combine_and = match op {
|
|
|
|
BinOpKind::And | BinOpKind::BitAnd => true,
|
|
|
|
BinOpKind::Or | BinOpKind::BitOr => false,
|
|
|
|
_ => return,
|
|
|
|
};
|
|
|
|
// value, name, order (higher/lower), inclusiveness
|
2022-05-21 06:24:00 -05:00
|
|
|
if let (Some(l), Some(r)) = (check_range_bounds(cx, left), check_range_bounds(cx, right)) {
|
2020-10-28 17:36:07 -05:00
|
|
|
// we only lint comparisons on the same name and with different
|
|
|
|
// direction
|
2022-05-21 06:24:00 -05:00
|
|
|
if l.id != r.id || l.ord == r.ord {
|
2020-10-28 17:36:07 -05:00
|
|
|
return;
|
|
|
|
}
|
2022-05-21 06:24:00 -05:00
|
|
|
let ord = Constant::partial_cmp(cx.tcx, cx.typeck_results().expr_ty(l.expr), &l.val, &r.val);
|
|
|
|
if combine_and && ord == Some(r.ord) {
|
2020-10-28 17:36:07 -05:00
|
|
|
// order lower bound and upper bound
|
2022-05-21 06:24:00 -05:00
|
|
|
let (l_span, u_span, l_inc, u_inc) = if r.ord == Ordering::Less {
|
|
|
|
(l.val_span, r.val_span, l.inc, r.inc)
|
2020-10-28 17:36:07 -05:00
|
|
|
} else {
|
2022-05-21 06:24:00 -05:00
|
|
|
(r.val_span, l.val_span, r.inc, l.inc)
|
2020-10-28 17:36:07 -05:00
|
|
|
};
|
|
|
|
// 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;
|
2022-05-21 06:24:00 -05:00
|
|
|
let name = snippet_with_applicability(cx, l.name_span, "_", &mut applicability);
|
2020-10-28 17:36:07 -05:00
|
|
|
let lo = snippet_with_applicability(cx, l_span, "_", &mut applicability);
|
|
|
|
let hi = snippet_with_applicability(cx, u_span, "_", &mut applicability);
|
2020-11-23 06:51:04 -06:00
|
|
|
let space = if lo.ends_with('.') { " " } else { "" };
|
2020-10-28 17:36:07 -05:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MANUAL_RANGE_CONTAINS,
|
|
|
|
span,
|
2022-10-06 02:44:38 -05:00
|
|
|
&format!("manual `{range_type}::contains` implementation"),
|
2020-10-28 17:36:07 -05:00
|
|
|
"use",
|
2022-10-06 02:44:38 -05:00
|
|
|
format!("({lo}{space}{range_op}{hi}).contains(&{name})"),
|
2020-10-28 17:36:07 -05:00
|
|
|
applicability,
|
|
|
|
);
|
2022-05-21 06:24:00 -05:00
|
|
|
} else if !combine_and && ord == Some(l.ord) {
|
2020-10-28 17:36:07 -05:00
|
|
|
// `!_.contains(_)`
|
|
|
|
// order lower bound and upper bound
|
2022-05-21 06:24:00 -05:00
|
|
|
let (l_span, u_span, l_inc, u_inc) = if l.ord == Ordering::Less {
|
|
|
|
(l.val_span, r.val_span, l.inc, r.inc)
|
2020-10-28 17:36:07 -05:00
|
|
|
} else {
|
2022-05-21 06:24:00 -05:00
|
|
|
(r.val_span, l.val_span, r.inc, l.inc)
|
2020-10-28 17:36:07 -05:00
|
|
|
};
|
|
|
|
if l_inc {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let (range_type, range_op) = if u_inc {
|
|
|
|
("Range", "..")
|
|
|
|
} else {
|
|
|
|
("RangeInclusive", "..=")
|
|
|
|
};
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2022-05-21 06:24:00 -05:00
|
|
|
let name = snippet_with_applicability(cx, l.name_span, "_", &mut applicability);
|
2020-10-28 17:36:07 -05:00
|
|
|
let lo = snippet_with_applicability(cx, l_span, "_", &mut applicability);
|
|
|
|
let hi = snippet_with_applicability(cx, u_span, "_", &mut applicability);
|
2020-11-23 06:51:04 -06:00
|
|
|
let space = if lo.ends_with('.') { " " } else { "" };
|
2020-10-28 17:36:07 -05:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
MANUAL_RANGE_CONTAINS,
|
|
|
|
span,
|
2022-10-06 02:44:38 -05:00
|
|
|
&format!("manual `!{range_type}::contains` implementation"),
|
2020-10-28 17:36:07 -05:00
|
|
|
"use",
|
2022-10-06 02:44:38 -05:00
|
|
|
format!("!({lo}{space}{range_op}{hi}).contains(&{name})"),
|
2020-10-28 17:36:07 -05:00
|
|
|
applicability,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2022-06-04 06:34:07 -05:00
|
|
|
|
|
|
|
// If the LHS is the same operator, we have to recurse to get the "real" RHS, since they have
|
|
|
|
// the same operator precedence
|
2023-11-16 12:13:24 -06:00
|
|
|
if let ExprKind::Binary(ref lhs_op, _left, new_lhs) = left.kind
|
|
|
|
&& op == lhs_op.node
|
|
|
|
&& let new_span = Span::new(new_lhs.span.lo(), right.span.hi(), expr.span.ctxt(), expr.span.parent())
|
|
|
|
&& let Some(snip) = &snippet_opt(cx, new_span)
|
2022-06-04 06:34:07 -05:00
|
|
|
// Do not continue if we have mismatched number of parens, otherwise the suggestion is wrong
|
2023-11-16 12:13:24 -06:00
|
|
|
&& snip.matches('(').count() == snip.matches(')').count()
|
|
|
|
{
|
|
|
|
check_possible_range_contains(cx, op, new_lhs, right, expr, new_span);
|
2022-06-04 06:34:07 -05:00
|
|
|
}
|
2020-10-28 17:36:07 -05:00
|
|
|
}
|
|
|
|
|
2023-07-02 07:35:19 -05:00
|
|
|
struct RangeBounds<'a, 'tcx> {
|
|
|
|
val: Constant<'tcx>,
|
2022-05-21 06:24:00 -05:00
|
|
|
expr: &'a Expr<'a>,
|
|
|
|
id: HirId,
|
|
|
|
name_span: Span,
|
|
|
|
val_span: Span,
|
|
|
|
ord: Ordering,
|
|
|
|
inc: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
// Takes a binary expression such as x <= 2 as input
|
|
|
|
// Breaks apart into various pieces, such as the value of the number,
|
|
|
|
// hir id of the variable, and direction/inclusiveness of the operator
|
2023-07-02 07:35:19 -05:00
|
|
|
fn check_range_bounds<'a, 'tcx>(cx: &'a LateContext<'tcx>, ex: &'a Expr<'_>) -> Option<RangeBounds<'a, 'tcx>> {
|
2021-04-08 10:50:13 -05:00
|
|
|
if let ExprKind::Binary(ref op, l, r) = ex.kind {
|
2020-10-28 17:36:07 -05: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-02-10 11:40:06 -06:00
|
|
|
if let Some(id) = path_to_local(l) {
|
2023-05-20 08:39:26 -05:00
|
|
|
if let Some(c) = constant(cx, cx.typeck_results(), r) {
|
2022-05-21 06:24:00 -05:00
|
|
|
return Some(RangeBounds {
|
|
|
|
val: c,
|
|
|
|
expr: r,
|
|
|
|
id,
|
|
|
|
name_span: l.span,
|
|
|
|
val_span: r.span,
|
|
|
|
ord: ordering,
|
|
|
|
inc: inclusive,
|
|
|
|
});
|
2020-10-28 17:36:07 -05:00
|
|
|
}
|
2022-02-10 11:40:06 -06:00
|
|
|
} else if let Some(id) = path_to_local(r) {
|
2023-05-20 08:39:26 -05:00
|
|
|
if let Some(c) = constant(cx, cx.typeck_results(), l) {
|
2022-05-21 06:24:00 -05:00
|
|
|
return Some(RangeBounds {
|
|
|
|
val: c,
|
|
|
|
expr: l,
|
|
|
|
id,
|
|
|
|
name_span: r.span,
|
|
|
|
val_span: l.span,
|
|
|
|
ord: ordering.reverse(),
|
|
|
|
inc: inclusive,
|
|
|
|
});
|
2020-10-28 17:36:07 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2019-09-02 23:26:49 -05:00
|
|
|
// exclusive range plus one: `x..(y+1)`
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_exclusive_range_plus_one(cx: &LateContext<'_>, expr: &Expr<'_>) {
|
2023-11-16 12:13:24 -06:00
|
|
|
if expr.span.can_be_used_for_suggestions()
|
|
|
|
&& let Some(higher::Range {
|
2019-09-02 23:26:49 -05:00
|
|
|
start,
|
|
|
|
end: Some(end),
|
2023-11-16 12:13:24 -06:00
|
|
|
limits: RangeLimits::HalfOpen,
|
|
|
|
}) = higher::Range::hir(expr)
|
|
|
|
&& let Some(y) = y_plus_one(cx, end)
|
|
|
|
{
|
|
|
|
let span = expr.span;
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
RANGE_PLUS_ONE,
|
|
|
|
span,
|
|
|
|
"an inclusive range would be more readable",
|
|
|
|
|diag| {
|
|
|
|
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();
|
|
|
|
if let Some(is_wrapped) = &snippet_opt(cx, span) {
|
|
|
|
if is_wrapped.starts_with('(') && is_wrapped.ends_with(')') {
|
|
|
|
diag.span_suggestion(span, "use", format!("({start}..={end})"), Applicability::MaybeIncorrect);
|
|
|
|
} else {
|
|
|
|
diag.span_suggestion(
|
|
|
|
span,
|
|
|
|
"use",
|
|
|
|
format!("{start}..={end}"),
|
|
|
|
Applicability::MachineApplicable, // snippet
|
|
|
|
);
|
2019-09-02 23:26:49 -05:00
|
|
|
}
|
2023-11-16 12:13:24 -06:00
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
2019-09-02 23:26:49 -05:00
|
|
|
}
|
|
|
|
}
|
2017-10-07 09:56:45 -05:00
|
|
|
|
2019-09-02 23:26:49 -05:00
|
|
|
// inclusive range minus one: `x..=(y-1)`
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_inclusive_range_minus_one(cx: &LateContext<'_>, expr: &Expr<'_>) {
|
2023-11-16 12:13:24 -06:00
|
|
|
if expr.span.can_be_used_for_suggestions()
|
|
|
|
&& let Some(higher::Range {
|
|
|
|
start,
|
|
|
|
end: Some(end),
|
|
|
|
limits: RangeLimits::Closed,
|
|
|
|
}) = higher::Range::hir(expr)
|
|
|
|
&& let Some(y) = y_minus_one(cx, end)
|
|
|
|
{
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
RANGE_MINUS_ONE,
|
|
|
|
expr.span,
|
|
|
|
"an exclusive range would be more readable",
|
|
|
|
|diag| {
|
|
|
|
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();
|
|
|
|
diag.span_suggestion(
|
|
|
|
expr.span,
|
|
|
|
"use",
|
|
|
|
format!("{start}..{end}"),
|
|
|
|
Applicability::MachineApplicable, // snippet
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
2015-08-15 11:55:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_reversed_empty_range(cx: &LateContext<'_>, expr: &Expr<'_>) {
|
|
|
|
fn inside_indexing_expr(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2020-06-09 09:36:01 -05:00
|
|
|
matches!(
|
|
|
|
get_parent_expr(cx, expr),
|
|
|
|
Some(Expr {
|
2020-05-17 10:36:26 -05:00
|
|
|
kind: ExprKind::Index(..),
|
|
|
|
..
|
2020-06-09 09:36:01 -05:00
|
|
|
})
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn is_for_loop_arg(cx: &LateContext<'_>, expr: &Expr<'_>) -> bool {
|
2020-06-09 09:36:01 -05:00
|
|
|
let mut cur_expr = expr;
|
|
|
|
while let Some(parent_expr) = get_parent_expr(cx, cur_expr) {
|
2021-08-08 09:49:13 -05:00
|
|
|
match higher::ForLoop::hir(parent_expr) {
|
|
|
|
Some(higher::ForLoop { arg, .. }) if arg.hir_id == expr.hir_id => return true,
|
2020-06-09 09:36:01 -05:00
|
|
|
_ => cur_expr = parent_expr,
|
|
|
|
}
|
2020-05-28 08:45:24 -05:00
|
|
|
}
|
2020-06-09 09:36:01 -05:00
|
|
|
|
|
|
|
false
|
2020-05-17 10:36:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_empty_range(limits: RangeLimits, ordering: Ordering) -> bool {
|
|
|
|
match limits {
|
|
|
|
RangeLimits::HalfOpen => ordering != Ordering::Less,
|
|
|
|
RangeLimits::Closed => ordering == Ordering::Greater,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-16 12:13:24 -06:00
|
|
|
if let Some(higher::Range {
|
|
|
|
start: Some(start),
|
|
|
|
end: Some(end),
|
|
|
|
limits,
|
|
|
|
}) = higher::Range::hir(expr)
|
|
|
|
&& let ty = cx.typeck_results().expr_ty(start)
|
|
|
|
&& let ty::Int(_) | ty::Uint(_) = ty.kind()
|
|
|
|
&& let Some(start_idx) = constant(cx, cx.typeck_results(), start)
|
|
|
|
&& let Some(end_idx) = constant(cx, cx.typeck_results(), end)
|
|
|
|
&& let Some(ordering) = Constant::partial_cmp(cx.tcx, ty, &start_idx, &end_idx)
|
|
|
|
&& is_empty_range(limits, ordering)
|
|
|
|
{
|
|
|
|
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(
|
2020-05-17 10:36:26 -05:00
|
|
|
cx,
|
|
|
|
REVERSED_EMPTY_RANGES,
|
|
|
|
expr.span,
|
2023-11-16 12:13:24 -06:00
|
|
|
"this range is reversed and using it to index a slice will panic at run-time",
|
2020-05-17 10:36:26 -05:00
|
|
|
);
|
|
|
|
}
|
2023-11-16 12:13:24 -06:00
|
|
|
// ... except in for loop arguments for backwards compatibility with `reverse_range_loop`
|
|
|
|
} else if ordering != Ordering::Equal || is_for_loop_arg(cx, expr) {
|
|
|
|
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!("({end_snippet}{dots}{start_snippet}).rev()"),
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
2020-05-17 10:36:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn y_plus_one<'t>(cx: &LateContext<'_>, expr: &'t Expr<'_>) -> Option<&'t Expr<'t>> {
|
2019-09-27 10:16:06 -05:00
|
|
|
match expr.kind {
|
2018-11-27 14:14:15 -06:00
|
|
|
ExprKind::Binary(
|
|
|
|
Spanned {
|
|
|
|
node: BinOpKind::Add, ..
|
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
lhs,
|
|
|
|
rhs,
|
2018-11-27 14:14:15 -06:00
|
|
|
) => {
|
2019-09-09 10:01:01 -05:00
|
|
|
if is_integer_const(cx, lhs, 1) {
|
2018-11-27 14:14:15 -06:00
|
|
|
Some(rhs)
|
2019-09-09 10:01:01 -05:00
|
|
|
} else if is_integer_const(cx, rhs, 1) {
|
2018-11-27 14:14:15 -06:00
|
|
|
Some(lhs)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
}
|
2017-10-07 09:56:45 -05:00
|
|
|
},
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn y_minus_one<'t>(cx: &LateContext<'_>, expr: &'t Expr<'_>) -> Option<&'t Expr<'t>> {
|
2019-09-27 10:16:06 -05:00
|
|
|
match expr.kind {
|
2018-11-27 14:14:15 -06:00
|
|
|
ExprKind::Binary(
|
|
|
|
Spanned {
|
|
|
|
node: BinOpKind::Sub, ..
|
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
lhs,
|
|
|
|
rhs,
|
2019-09-09 10:01:01 -05:00
|
|
|
) if is_integer_const(cx, rhs, 1) => Some(lhs),
|
2017-10-07 09:56:45 -05:00
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|