2015-09-18 21:53:04 -05:00
|
|
|
use rustc::lint::*;
|
2016-04-07 10:46:48 -05:00
|
|
|
use rustc::hir::*;
|
2015-08-15 11:55:25 -05:00
|
|
|
use syntax::codemap::Spanned;
|
2016-04-26 06:31:52 -05:00
|
|
|
use utils::{is_integer_literal, match_type, paths, snippet, span_lint, unsugar_range, UnsugaredRange};
|
2015-08-15 11:55:25 -05:00
|
|
|
|
2016-02-05 17:41:54 -06:00
|
|
|
/// **What it does:** This lint checks for iterating over ranges with a `.step_by(0)`, which never terminates.
|
2015-12-10 18:22:27 -06:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** This very much looks like an oversight, since with `loop { .. }` there is an obvious better way to endlessly loop.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None
|
|
|
|
///
|
|
|
|
/// **Example:** `for x in (5..5).step_by(0) { .. }`
|
2015-08-15 11:55:25 -05:00
|
|
|
declare_lint! {
|
|
|
|
pub RANGE_STEP_BY_ZERO, Warn,
|
|
|
|
"using Range::step_by(0), which produces an infinite iterator"
|
|
|
|
}
|
2016-02-05 17:41:54 -06:00
|
|
|
/// **What it does:** This lint 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()`.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None
|
|
|
|
///
|
|
|
|
/// **Example:** `x.iter().zip(0..x.len())`
|
2015-11-03 08:42:52 -06:00
|
|
|
declare_lint! {
|
|
|
|
pub RANGE_ZIP_WITH_LEN, Warn,
|
|
|
|
"zipping iterator with a range when enumerate() would do"
|
|
|
|
}
|
2015-08-15 11:55:25 -05:00
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct StepByZero;
|
|
|
|
|
|
|
|
impl LintPass for StepByZero {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-11-03 08:42:52 -06:00
|
|
|
lint_array!(RANGE_STEP_BY_ZERO, RANGE_ZIP_WITH_LEN)
|
2015-08-15 11:55:25 -05:00
|
|
|
}
|
2015-09-18 21:53:04 -05:00
|
|
|
}
|
2015-08-15 11:55:25 -05:00
|
|
|
|
2015-09-18 21:53:04 -05:00
|
|
|
impl LateLintPass for StepByZero {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext, expr: &Expr) {
|
2016-01-03 22:26:12 -06:00
|
|
|
if let ExprMethodCall(Spanned { node: ref name, .. }, _, ref args) = expr.node {
|
2015-11-03 08:42:52 -06:00
|
|
|
// Range with step_by(0).
|
2016-04-26 06:31:52 -05:00
|
|
|
if name.as_str() == "step_by" && args.len() == 2 && has_step_by(cx, &args[0]) &&
|
2016-01-03 22:26:12 -06:00
|
|
|
is_integer_literal(&args[1], 0) {
|
2016-03-25 19:49:45 -05:00
|
|
|
span_lint(cx,
|
|
|
|
RANGE_STEP_BY_ZERO,
|
|
|
|
expr.span,
|
|
|
|
"Range::step_by(0) produces an infinite iterator. Consider using `std::iter::repeat()` \
|
|
|
|
instead");
|
2016-01-03 22:26:12 -06:00
|
|
|
} else if name.as_str() == "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];
|
2015-11-03 08:42:52 -06:00
|
|
|
if_let_chain! {
|
|
|
|
[
|
|
|
|
// .iter() call
|
2015-11-24 11:44:40 -06:00
|
|
|
let ExprMethodCall( Spanned { node: ref iter_name, .. }, _, ref iter_args ) = *iter,
|
2015-11-03 08:42:52 -06:00
|
|
|
iter_name.as_str() == "iter",
|
|
|
|
// range expression in .zip() call: 0..x.len()
|
2016-03-07 09:31:38 -06:00
|
|
|
let Some(UnsugaredRange { start: Some(ref start), end: Some(ref end), .. }) = unsugar_range(zip_arg),
|
|
|
|
is_integer_literal(start, 0),
|
2015-11-03 08:42:52 -06:00
|
|
|
// .len() call
|
2016-03-07 09:31:38 -06:00
|
|
|
let ExprMethodCall(Spanned { node: ref len_name, .. }, _, ref len_args) = end.node,
|
2015-11-03 08:42:52 -06:00
|
|
|
len_name.as_str() == "len" && len_args.len() == 1,
|
|
|
|
// .iter() and .len() called on same Path
|
|
|
|
let ExprPath(_, Path { segments: ref iter_path, .. }) = iter_args[0].node,
|
|
|
|
let ExprPath(_, Path { segments: ref len_path, .. }) = len_args[0].node,
|
|
|
|
iter_path == len_path
|
|
|
|
], {
|
2016-03-25 19:49:45 -05:00
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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.
|
2015-08-21 12:00:33 -05:00
|
|
|
let ty = cx.tcx.expr_ty(expr);
|
2016-04-26 06:31:52 -05:00
|
|
|
|
|
|
|
// Note: `RangeTo`, `RangeToInclusive` and `RangeFull` don't have step_by
|
|
|
|
match_type(cx, ty, &paths::RANGE)
|
|
|
|
|| match_type(cx, ty, &paths::RANGE_FROM)
|
|
|
|
|| match_type(cx, ty, &paths::RANGE_INCLUSIVE)
|
2015-08-15 11:55:25 -05:00
|
|
|
}
|