]> git.proxmox.com Git - rustc.git/blobdiff - src/tools/clippy/clippy_lints/src/ranges.rs
New upstream version 1.23.0+dfsg1
[rustc.git] / src / tools / clippy / clippy_lints / src / ranges.rs
index aa43fb6b620fcafb817beb717bab0586adf5e4b9..39252ceed1c9644d23cd810f9c6e93946b998932 100644 (file)
@@ -1,7 +1,10 @@
 use rustc::lint::*;
 use rustc::hir::*;
-use utils::{is_integer_literal, paths, snippet, span_lint};
-use utils::{higher, implements_trait, get_trait_def_id};
+use syntax::ast::RangeLimits;
+use syntax::codemap::Spanned;
+use utils::{is_integer_literal, paths, snippet, span_lint, span_lint_and_then};
+use utils::{get_trait_def_id, higher, implements_trait};
+use utils::sugg::Sugg;
 
 /// **What it does:** Checks for calling `.step_by(0)` on iterators,
 /// which never terminates.
@@ -38,26 +41,62 @@ declare_lint! {
     "zipping iterator with a range when `enumerate()` would do"
 }
 
+/// **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,
+    Allow,
+    "`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`"
+}
+
 #[derive(Copy, Clone)]
-pub struct StepByZero;
+pub struct Pass;
 
-impl LintPass for StepByZero {
+impl LintPass for Pass {
     fn get_lints(&self) -> LintArray {
-        lint_array!(ITERATOR_STEP_BY_ZERO, RANGE_ZIP_WITH_LEN)
+        lint_array!(ITERATOR_STEP_BY_ZERO, RANGE_ZIP_WITH_LEN, RANGE_PLUS_ONE, RANGE_MINUS_ONE)
     }
 }
 
-impl<'a, 'tcx> LateLintPass<'a, 'tcx> for StepByZero {
+impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
     fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
         if let ExprMethodCall(ref path, _, ref args) = expr.node {
             let name = path.name.as_str();
 
             // Range with step_by(0).
             if name == "step_by" && args.len() == 2 && has_step_by(cx, &args[0]) {
-                use consts::{Constant, constant};
+                use consts::{constant, Constant};
                 use rustc_const_math::ConstInt::Usize;
                 if let Some((Constant::Int(Usize(us)), _)) = constant(cx, &args[1]) {
-                    if us.as_u64(cx.sess().target.uint_type) == 0 {
+                    if us.as_u64() == 0 {
                         span_lint(
                             cx,
                             ITERATOR_STEP_BY_ZERO,
@@ -69,27 +108,70 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for StepByZero {
             } else if name == "zip" && args.len() == 2 {
                 let iter = &args[0].node;
                 let zip_arg = &args[1];
-                if_let_chain! {[
+                if_chain! {
                     // .iter() call
-                    let ExprMethodCall(ref iter_path, _, ref iter_args ) = *iter,
-                    iter_path.name == "iter",
+                    if let ExprMethodCall(ref iter_path, _, ref iter_args ) = *iter;
+                    if iter_path.name == "iter";
                     // range expression in .zip() call: 0..x.len()
-                    let Some(higher::Range { start: Some(start), end: Some(end), .. }) = higher::range(zip_arg),
-                    is_integer_literal(start, 0),
+                    if let Some(higher::Range { start: Some(start), end: Some(end), .. }) = higher::range(zip_arg);
+                    if is_integer_literal(start, 0);
                     // .len() call
-                    let ExprMethodCall(ref len_path, _, ref len_args) = end.node,
-                    len_path.name == "len" && len_args.len() == 1,
+                    if let ExprMethodCall(ref len_path, _, ref len_args) = end.node;
+                    if len_path.name == "len" && len_args.len() == 1;
                     // .iter() and .len() called on same Path
-                    let ExprPath(QPath::Resolved(_, ref iter_path)) = iter_args[0].node,
-                    let ExprPath(QPath::Resolved(_, ref len_path)) = len_args[0].node,
-                    iter_path.segments == len_path.segments
-                 ], {
-                     span_lint(cx,
-                               RANGE_ZIP_WITH_LEN,
-                               expr.span,
-                               &format!("It is more idiomatic to use {}.iter().enumerate()",
-                                        snippet(cx, iter_args[0].span, "_")));
-                }}
+                    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, "_")));
+                    }
+                }
+            }
+        }
+
+        // exclusive range plus one: x..(y+1)
+        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));
+                    },
+                );
+            }
+        }
+
+        // inclusive range minus one: x..=(y-1)
+        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));
+                    },
+                );
             }
         }
     }
@@ -102,3 +184,23 @@ fn has_step_by(cx: &LateContext, expr: &Expr) -> bool {
 
     get_trait_def_id(cx, &paths::ITERATOR).map_or(false, |iterator_trait| implements_trait(cx, ty, iterator_trait, &[]))
 }
+
+fn y_plus_one(expr: &Expr) -> Option<&Expr> {
+    match expr.node {
+        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
+        },
+        _ => 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,
+    }
+}