2015-09-18 21:53:04 -05:00
|
|
|
use rustc::lint::*;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2017-10-07 09:56:45 -05:00
|
|
|
use syntax::ast::RangeLimits;
|
|
|
|
use syntax::codemap::Spanned;
|
|
|
|
use utils::{is_integer_literal, paths, snippet, span_lint, span_lint_and_then};
|
2017-09-05 04:33:04 -05:00
|
|
|
use utils::{get_trait_def_id, higher, implements_trait};
|
2017-10-07 09:56:45 -05:00
|
|
|
use utils::sugg::Sugg;
|
2015-08-15 11:55:25 -05:00
|
|
|
|
2017-06-18 08:14:46 -05:00
|
|
|
/// **What it does:** Checks for calling `.step_by(0)` on iterators,
|
2016-08-06 02:55:04 -05:00
|
|
|
/// which never terminates.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** This very much looks like an oversight, since with
|
|
|
|
/// `loop { .. }` there is an obvious better way to endlessly loop.
|
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
|
|
|
|
/// for x in (5..5).step_by(0) { .. }
|
|
|
|
/// ```
|
2015-08-15 11:55:25 -05:00
|
|
|
declare_lint! {
|
2017-06-18 08:14:46 -05:00
|
|
|
pub ITERATOR_STEP_BY_ZERO,
|
2016-08-06 03:18:36 -05:00
|
|
|
Warn,
|
2017-06-18 08:14:46 -05:00
|
|
|
"using `Iterator::step_by(0)`, which produces an infinite iterator"
|
2015-08-15 11:55:25 -05:00
|
|
|
}
|
2017-06-18 08:14:46 -05:00
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
/// **What it does:** Checks for zipping a collection with the range of
|
|
|
|
/// `0.._.len()`.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** The code is better expressed with `.enumerate()`.
|
|
|
|
///
|
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
|
|
|
|
/// x.iter().zip(0..x.len())
|
|
|
|
/// ```
|
2015-11-03 08:42:52 -06:00
|
|
|
declare_lint! {
|
2016-08-06 03:18:36 -05:00
|
|
|
pub RANGE_ZIP_WITH_LEN,
|
|
|
|
Warn,
|
|
|
|
"zipping iterator with a range when `enumerate()` would do"
|
2015-11-03 08:42:52 -06:00
|
|
|
}
|
2015-08-15 11:55:25 -05:00
|
|
|
|
2017-10-07 09:56:45 -05:00
|
|
|
/// **What it does:** Checks for exclusive ranges where 1 is added to the
|
|
|
|
/// upper bound, e.g. `x..(y+1)`.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** The code is more readable with an inclusive range
|
|
|
|
/// like `x..=y`.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// for x..(y+1) { .. }
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub RANGE_PLUS_ONE,
|
2017-10-08 05:42:17 -05:00
|
|
|
Allow,
|
2017-10-07 09:56:45 -05:00
|
|
|
"`x..(y+1)` reads better as `x..=y`"
|
|
|
|
}
|
|
|
|
|
|
|
|
/// **What it does:** Checks for inclusive ranges where 1 is subtracted from
|
|
|
|
/// the upper bound, e.g. `x..=(y-1)`.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** The code is more readable with an exclusive range
|
|
|
|
/// like `x..y`.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// for x..=(y-1) { .. }
|
|
|
|
/// ```
|
|
|
|
declare_lint! {
|
|
|
|
pub RANGE_MINUS_ONE,
|
|
|
|
Warn,
|
|
|
|
"`x..=(y-1)` reads better as `x..y`"
|
|
|
|
}
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
#[derive(Copy, Clone)]
|
2017-10-07 09:56:45 -05:00
|
|
|
pub struct Pass;
|
2015-08-15 11:55:25 -05:00
|
|
|
|
2017-10-07 09:56:45 -05:00
|
|
|
impl LintPass for Pass {
|
2015-08-15 11:55:25 -05:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2017-11-04 14:55:56 -05:00
|
|
|
lint_array!(ITERATOR_STEP_BY_ZERO, RANGE_ZIP_WITH_LEN, RANGE_PLUS_ONE, RANGE_MINUS_ONE)
|
2015-08-15 11:55:25 -05:00
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-15 11:55:25 -05:00
|
|
|
|
2017-10-07 09:56:45 -05:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
2016-12-07 06:13:40 -06:00
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
|
2017-07-10 03:17:40 -05:00
|
|
|
if let ExprMethodCall(ref path, _, ref args) = expr.node {
|
|
|
|
let name = path.name.as_str();
|
2016-11-23 14:19:03 -06:00
|
|
|
|
2015-11-03 08:42:52 -06:00
|
|
|
// Range with step_by(0).
|
2017-06-18 08:14:46 -05:00
|
|
|
if name == "step_by" && args.len() == 2 && has_step_by(cx, &args[0]) {
|
2017-09-05 04:33:04 -05:00
|
|
|
use consts::{constant, Constant};
|
2018-03-13 05:38:11 -05:00
|
|
|
if let Some((Constant::Int(0), _)) = constant(cx, &args[1]) {
|
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
ITERATOR_STEP_BY_ZERO,
|
|
|
|
expr.span,
|
|
|
|
"Iterator::step_by(0) will panic at runtime",
|
|
|
|
);
|
2017-06-18 08:14:46 -05:00
|
|
|
}
|
2016-11-23 14:19:03 -06:00
|
|
|
} else if name == "zip" && args.len() == 2 {
|
2015-11-03 08:42:52 -06:00
|
|
|
let iter = &args[0].node;
|
2016-03-07 09:31:38 -06:00
|
|
|
let zip_arg = &args[1];
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
2016-06-05 19:09:19 -05:00
|
|
|
// .iter() call
|
2017-10-23 14:18:02 -05:00
|
|
|
if let ExprMethodCall(ref iter_path, _, ref iter_args ) = *iter;
|
|
|
|
if iter_path.name == "iter";
|
2016-06-05 19:09:19 -05:00
|
|
|
// range expression in .zip() call: 0..x.len()
|
2017-10-23 14:18:02 -05:00
|
|
|
if let Some(higher::Range { start: Some(start), end: Some(end), .. }) = higher::range(zip_arg);
|
|
|
|
if is_integer_literal(start, 0);
|
2016-06-05 19:09:19 -05:00
|
|
|
// .len() call
|
2017-10-23 14:18:02 -05:00
|
|
|
if let ExprMethodCall(ref len_path, _, ref len_args) = end.node;
|
|
|
|
if len_path.name == "len" && len_args.len() == 1;
|
2016-06-05 19:09:19 -05:00
|
|
|
// .iter() and .len() called on same Path
|
2017-10-23 14:18:02 -05:00
|
|
|
if let ExprPath(QPath::Resolved(_, ref iter_path)) = iter_args[0].node;
|
|
|
|
if let ExprPath(QPath::Resolved(_, ref len_path)) = len_args[0].node;
|
|
|
|
if iter_path.segments == len_path.segments;
|
|
|
|
then {
|
|
|
|
span_lint(cx,
|
|
|
|
RANGE_ZIP_WITH_LEN,
|
|
|
|
expr.span,
|
|
|
|
&format!("It is more idiomatic to use {}.iter().enumerate()",
|
|
|
|
snippet(cx, iter_args[0].span, "_")));
|
|
|
|
}
|
|
|
|
}
|
2015-11-03 08:42:52 -06:00
|
|
|
}
|
2015-08-15 11:55:25 -05:00
|
|
|
}
|
2017-10-07 09:56:45 -05:00
|
|
|
|
|
|
|
// exclusive range plus one: x..(y+1)
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
|
|
|
if let Some(higher::Range { start, end: Some(end), limits: RangeLimits::HalfOpen }) = higher::range(expr);
|
|
|
|
if let Some(y) = y_plus_one(end);
|
|
|
|
then {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
RANGE_PLUS_ONE,
|
|
|
|
expr.span,
|
|
|
|
"an inclusive range would be more readable",
|
|
|
|
|db| {
|
|
|
|
let start = start.map_or("".to_owned(), |x| Sugg::hir(cx, x, "x").to_string());
|
|
|
|
let end = Sugg::hir(cx, y, "y");
|
|
|
|
db.span_suggestion(expr.span,
|
|
|
|
"use",
|
|
|
|
format!("{}..={}", start, end));
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2017-10-07 09:56:45 -05:00
|
|
|
|
|
|
|
// inclusive range minus one: x..=(y-1)
|
2017-10-23 14:18:02 -05:00
|
|
|
if_chain! {
|
|
|
|
if let Some(higher::Range { start, end: Some(end), limits: RangeLimits::Closed }) = higher::range(expr);
|
|
|
|
if let Some(y) = y_minus_one(end);
|
|
|
|
then {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
RANGE_MINUS_ONE,
|
|
|
|
expr.span,
|
|
|
|
"an exclusive range would be more readable",
|
|
|
|
|db| {
|
|
|
|
let start = start.map_or("".to_owned(), |x| Sugg::hir(cx, x, "x").to_string());
|
|
|
|
let end = Sugg::hir(cx, y, "y");
|
|
|
|
db.span_suggestion(expr.span,
|
|
|
|
"use",
|
|
|
|
format!("{}..{}", start, end));
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2015-08-15 11:55:25 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-26 06:31:52 -05:00
|
|
|
fn has_step_by(cx: &LateContext, expr: &Expr) -> bool {
|
2015-08-15 11:55:25 -05:00
|
|
|
// No need for walk_ptrs_ty here because step_by moves self, so it
|
|
|
|
// can't be called on a borrowed range.
|
2017-06-18 08:14:46 -05:00
|
|
|
let ty = cx.tables.expr_ty_adjusted(expr);
|
2016-04-26 06:31:52 -05:00
|
|
|
|
2017-06-29 09:07:43 -05:00
|
|
|
get_trait_def_id(cx, &paths::ITERATOR).map_or(false, |iterator_trait| implements_trait(cx, ty, iterator_trait, &[]))
|
2015-08-15 11:55:25 -05:00
|
|
|
}
|
2017-10-07 09:56:45 -05:00
|
|
|
|
|
|
|
fn y_plus_one(expr: &Expr) -> Option<&Expr> {
|
|
|
|
match expr.node {
|
2017-11-04 14:55:56 -05:00
|
|
|
ExprBinary(Spanned { node: BiAdd, .. }, ref lhs, ref rhs) => if is_integer_literal(lhs, 1) {
|
|
|
|
Some(rhs)
|
|
|
|
} else if is_integer_literal(rhs, 1) {
|
|
|
|
Some(lhs)
|
|
|
|
} else {
|
|
|
|
None
|
2017-10-07 09:56:45 -05:00
|
|
|
},
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn y_minus_one(expr: &Expr) -> Option<&Expr> {
|
|
|
|
match expr.node {
|
|
|
|
ExprBinary(Spanned { node: BiSub, .. }, ref lhs, ref rhs) if is_integer_literal(rhs, 1) => Some(lhs),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|