2015-08-16 01:54:43 -05:00
|
|
|
use rustc::lint::*;
|
2014-11-19 12:48:31 -06:00
|
|
|
use syntax::ptr::P;
|
|
|
|
use syntax::ast;
|
|
|
|
use syntax::ast::*;
|
2015-05-06 03:01:49 -05:00
|
|
|
use syntax::ast_util::{is_comparison_binop, binop_to_string};
|
2015-05-06 05:59:08 -05:00
|
|
|
use syntax::codemap::{Span, Spanned};
|
2015-08-16 01:54:43 -05:00
|
|
|
use syntax::visit::FnKind;
|
|
|
|
use rustc::middle::ty;
|
2015-08-15 02:22:50 -05:00
|
|
|
use std::borrow::Cow;
|
2014-11-19 12:48:31 -06:00
|
|
|
|
2015-08-12 06:14:14 -05:00
|
|
|
use utils::{match_path, snippet, snippet_block, span_lint, span_help_and_lint, walk_ptrs_ty};
|
2015-08-17 05:06:56 -05:00
|
|
|
use consts::constant;
|
2015-05-06 03:01:49 -05:00
|
|
|
|
2014-11-19 12:48:31 -06:00
|
|
|
/// Handles uncategorized lints
|
|
|
|
/// Currently handles linting of if-let-able matches
|
2014-12-25 17:04:49 -06:00
|
|
|
#[allow(missing_copy_implementations)]
|
2014-11-19 12:48:31 -06:00
|
|
|
pub struct MiscPass;
|
|
|
|
|
|
|
|
|
2014-12-25 17:54:44 -06:00
|
|
|
declare_lint!(pub SINGLE_MATCH, Warn,
|
2015-08-13 03:32:35 -05:00
|
|
|
"a match statement with a single nontrivial arm (i.e, where the other arm \
|
|
|
|
is `_ => {}`) is used; recommends `if let` instead");
|
2014-11-19 12:48:31 -06:00
|
|
|
|
|
|
|
impl LintPass for MiscPass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2014-12-25 17:54:44 -06:00
|
|
|
lint_array!(SINGLE_MATCH)
|
2014-11-19 12:48:31 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
fn check_expr(&mut self, cx: &Context, expr: &Expr) {
|
2014-12-25 17:04:49 -06:00
|
|
|
if let ExprMatch(ref ex, ref arms, ast::MatchSource::Normal) = expr.node {
|
2015-08-15 02:22:50 -05:00
|
|
|
// check preconditions: only two arms
|
|
|
|
if arms.len() == 2 &&
|
|
|
|
// both of the arms have a single pattern and no guard
|
|
|
|
arms[0].pats.len() == 1 && arms[0].guard.is_none() &&
|
|
|
|
arms[1].pats.len() == 1 && arms[1].guard.is_none() &&
|
|
|
|
// and the second pattern is a `_` wildcard: this is not strictly necessary,
|
|
|
|
// since the exhaustiveness check will ensure the last one is a catch-all,
|
|
|
|
// but in some cases, an explicit match is preferred to catch situations
|
|
|
|
// when an enum is extended, so we don't consider these cases
|
|
|
|
arms[1].pats[0].node == PatWild(PatWildSingle) &&
|
|
|
|
// finally, we don't want any content in the second arm (unit or empty block)
|
|
|
|
is_unit_expr(&*arms[1].body)
|
|
|
|
{
|
|
|
|
let body_code = snippet_block(cx, arms[0].body.span, "..");
|
|
|
|
let body_code = if let ExprBlock(_) = arms[0].body.node {
|
|
|
|
body_code
|
|
|
|
} else {
|
|
|
|
Cow::Owned(format!("{{ {} }}", body_code))
|
|
|
|
};
|
|
|
|
span_help_and_lint(cx, SINGLE_MATCH, expr.span,
|
|
|
|
"you seem to be trying to use match for \
|
|
|
|
destructuring a single pattern. Did you mean to \
|
|
|
|
use `if let`?",
|
|
|
|
&*format!("try\nif let {} = {} {}",
|
|
|
|
snippet(cx, arms[0].pats[0].span, ".."),
|
|
|
|
snippet(cx, ex.span, ".."),
|
|
|
|
body_code)
|
|
|
|
);
|
2014-11-19 12:48:31 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-12-15 08:53:45 -06:00
|
|
|
|
2015-08-15 02:22:50 -05:00
|
|
|
fn is_unit_expr(expr: &Expr) -> bool {
|
|
|
|
match expr.node {
|
|
|
|
ExprTup(ref v) if v.is_empty() => true,
|
|
|
|
ExprBlock(ref b) if b.stmts.is_empty() && b.expr.is_none() => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-15 08:53:45 -06:00
|
|
|
|
2015-08-13 03:32:35 -05:00
|
|
|
declare_lint!(pub TOPLEVEL_REF_ARG, Warn,
|
|
|
|
"a function argument is declared `ref` (i.e. `fn foo(ref x: u8)`, but not \
|
|
|
|
`fn foo((ref x, ref y): (u8, u8))`)");
|
2014-12-24 17:15:22 -06:00
|
|
|
|
2014-12-25 17:22:18 -06:00
|
|
|
#[allow(missing_copy_implementations)]
|
2014-12-24 17:15:22 -06:00
|
|
|
pub struct TopLevelRefPass;
|
|
|
|
|
|
|
|
impl LintPass for TopLevelRefPass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2014-12-25 17:54:44 -06:00
|
|
|
lint_array!(TOPLEVEL_REF_ARG)
|
2014-12-24 17:15:22 -06:00
|
|
|
}
|
|
|
|
|
2015-08-16 06:54:03 -05:00
|
|
|
fn check_fn(&mut self, cx: &Context, k: FnKind, decl: &FnDecl, _: &Block, _: Span, _: NodeId) {
|
|
|
|
if let FnKind::FkFnBlock = k {
|
|
|
|
// Does not apply to closures
|
|
|
|
return
|
|
|
|
}
|
2015-08-13 09:41:51 -05:00
|
|
|
for ref arg in &decl.inputs {
|
2014-12-24 17:15:22 -06:00
|
|
|
if let PatIdent(BindByRef(_), _, _) = arg.pat.node {
|
2015-08-11 10:02:04 -05:00
|
|
|
span_lint(cx,
|
2014-12-25 17:54:44 -06:00
|
|
|
TOPLEVEL_REF_ARG,
|
2014-12-24 17:15:22 -06:00
|
|
|
arg.pat.span,
|
2015-08-12 03:46:49 -05:00
|
|
|
"`ref` directly on a function argument is ignored. Consider using a reference type instead."
|
2014-12-24 17:15:22 -06:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-04 07:11:15 -05:00
|
|
|
|
2015-08-13 03:32:35 -05:00
|
|
|
declare_lint!(pub CMP_NAN, Deny,
|
|
|
|
"comparisons to NAN (which will always return false, which is probably not intended)");
|
2015-05-04 07:11:15 -05:00
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct CmpNan;
|
|
|
|
|
|
|
|
impl LintPass for CmpNan {
|
2015-08-11 08:07:21 -05:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-05-04 07:11:15 -05:00
|
|
|
lint_array!(CMP_NAN)
|
2015-08-11 08:07:21 -05:00
|
|
|
}
|
2015-08-11 10:02:04 -05:00
|
|
|
|
2015-08-11 08:07:21 -05:00
|
|
|
fn check_expr(&mut self, cx: &Context, expr: &Expr) {
|
|
|
|
if let ExprBinary(ref cmp, ref left, ref right) = expr.node {
|
|
|
|
if is_comparison_binop(cmp.node) {
|
|
|
|
if let &ExprPath(_, ref path) = &left.node {
|
|
|
|
check_nan(cx, path, expr.span);
|
|
|
|
}
|
|
|
|
if let &ExprPath(_, ref path) = &right.node {
|
|
|
|
check_nan(cx, path, expr.span);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-04 07:11:15 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn check_nan(cx: &Context, path: &Path, span: Span) {
|
2015-08-11 10:02:04 -05:00
|
|
|
path.segments.last().map(|seg| if seg.identifier.name == "NAN" {
|
|
|
|
span_lint(cx, CMP_NAN, span,
|
2015-08-12 03:46:49 -05:00
|
|
|
"doomed comparison with NAN, use `std::{f32,f64}::is_nan()` instead");
|
2015-08-11 10:02:04 -05:00
|
|
|
});
|
2015-05-04 07:11:15 -05:00
|
|
|
}
|
2015-05-06 03:01:49 -05:00
|
|
|
|
|
|
|
declare_lint!(pub FLOAT_CMP, Warn,
|
2015-08-13 03:32:35 -05:00
|
|
|
"using `==` or `!=` on float values (as floating-point operations \
|
|
|
|
usually involve rounding errors, it is always better to check for approximate \
|
|
|
|
equality within small bounds)");
|
2015-08-11 10:02:04 -05:00
|
|
|
|
2015-05-06 03:01:49 -05:00
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct FloatCmp;
|
|
|
|
|
|
|
|
impl LintPass for FloatCmp {
|
2015-08-11 08:07:21 -05:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-05-06 03:01:49 -05:00
|
|
|
lint_array!(FLOAT_CMP)
|
2015-08-11 08:07:21 -05:00
|
|
|
}
|
2015-08-11 10:02:04 -05:00
|
|
|
|
2015-08-11 08:07:21 -05:00
|
|
|
fn check_expr(&mut self, cx: &Context, expr: &Expr) {
|
|
|
|
if let ExprBinary(ref cmp, ref left, ref right) = expr.node {
|
|
|
|
let op = cmp.node;
|
|
|
|
if (op == BiEq || op == BiNe) && (is_float(cx, left) || is_float(cx, right)) {
|
2015-08-17 05:06:56 -05:00
|
|
|
if constant(cx, left).or_else(|| constant(cx, right)).map_or(
|
|
|
|
false, |c| c.as_float().map_or(false, |f| f == 0.0)) {
|
|
|
|
return;
|
|
|
|
}
|
2015-08-11 08:07:21 -05:00
|
|
|
span_lint(cx, FLOAT_CMP, expr.span, &format!(
|
2015-08-13 01:15:42 -05:00
|
|
|
"{}-comparison of f32 or f64 detected. Consider changing this to \
|
|
|
|
`abs({} - {}) < epsilon` for some suitable value of epsilon",
|
2015-08-11 10:02:04 -05:00
|
|
|
binop_to_string(op), snippet(cx, left.span, ".."),
|
2015-08-11 08:07:21 -05:00
|
|
|
snippet(cx, right.span, "..")));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-06 03:01:49 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_float(cx: &Context, expr: &Expr) -> bool {
|
2015-08-11 13:57:21 -05:00
|
|
|
if let ty::TyFloat(_) = walk_ptrs_ty(cx.tcx.expr_ty(expr)).sty {
|
2015-08-11 08:07:21 -05:00
|
|
|
true
|
2015-08-11 10:02:04 -05:00
|
|
|
} else {
|
|
|
|
false
|
2015-08-11 08:07:21 -05:00
|
|
|
}
|
2015-05-06 03:01:49 -05:00
|
|
|
}
|
2015-05-06 05:59:08 -05:00
|
|
|
|
|
|
|
declare_lint!(pub PRECEDENCE, Warn,
|
2015-08-13 03:32:35 -05:00
|
|
|
"expressions where precedence may trip up the unwary reader of the source; \
|
|
|
|
suggests adding parentheses, e.g. `x << 2 + y` will be parsed as `x << (2 + y)`");
|
2015-08-11 10:02:04 -05:00
|
|
|
|
2015-05-06 05:59:08 -05:00
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct Precedence;
|
|
|
|
|
|
|
|
impl LintPass for Precedence {
|
2015-08-11 08:07:21 -05:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-05-06 05:59:08 -05:00
|
|
|
lint_array!(PRECEDENCE)
|
2015-08-11 08:07:21 -05:00
|
|
|
}
|
2015-08-11 10:02:04 -05:00
|
|
|
|
2015-08-11 08:07:21 -05:00
|
|
|
fn check_expr(&mut self, cx: &Context, expr: &Expr) {
|
|
|
|
if let ExprBinary(Spanned { node: op, ..}, ref left, ref right) = expr.node {
|
|
|
|
if is_bit_op(op) && (is_arith_expr(left) || is_arith_expr(right)) {
|
2015-08-11 10:02:04 -05:00
|
|
|
span_lint(cx, PRECEDENCE, expr.span,
|
2015-08-13 02:30:29 -05:00
|
|
|
"operator precedence can trip the unwary. Consider adding parentheses \
|
2015-08-13 01:15:42 -05:00
|
|
|
to the subexpression");
|
2015-08-11 08:07:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-06 05:59:08 -05:00
|
|
|
}
|
|
|
|
|
2015-05-06 06:20:47 -05:00
|
|
|
fn is_arith_expr(expr : &Expr) -> bool {
|
2015-08-11 08:07:21 -05:00
|
|
|
match expr.node {
|
|
|
|
ExprBinary(Spanned { node: op, ..}, _, _) => is_arith_op(op),
|
|
|
|
_ => false
|
|
|
|
}
|
2015-05-06 06:20:47 -05:00
|
|
|
}
|
|
|
|
|
2015-05-06 05:59:08 -05:00
|
|
|
fn is_bit_op(op : BinOp_) -> bool {
|
2015-08-11 08:07:21 -05:00
|
|
|
match op {
|
|
|
|
BiBitXor | BiBitAnd | BiBitOr | BiShl | BiShr => true,
|
|
|
|
_ => false
|
|
|
|
}
|
2015-05-06 05:59:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn is_arith_op(op : BinOp_) -> bool {
|
2015-08-11 08:07:21 -05:00
|
|
|
match op {
|
|
|
|
BiAdd | BiSub | BiMul | BiDiv | BiRem => true,
|
|
|
|
_ => false
|
|
|
|
}
|
2015-05-06 05:59:08 -05:00
|
|
|
}
|
2015-05-21 07:51:43 -05:00
|
|
|
|
|
|
|
declare_lint!(pub CMP_OWNED, Warn,
|
2015-08-13 03:32:35 -05:00
|
|
|
"creating owned instances for comparing with others, e.g. `x == \"foo\".to_string()`");
|
2015-08-11 10:02:04 -05:00
|
|
|
|
2015-05-21 07:51:43 -05:00
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct CmpOwned;
|
|
|
|
|
|
|
|
impl LintPass for CmpOwned {
|
2015-08-11 08:07:21 -05:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-05-21 07:51:43 -05:00
|
|
|
lint_array!(CMP_OWNED)
|
2015-08-11 08:07:21 -05:00
|
|
|
}
|
2015-08-11 10:02:04 -05:00
|
|
|
|
2015-08-11 08:07:21 -05:00
|
|
|
fn check_expr(&mut self, cx: &Context, expr: &Expr) {
|
|
|
|
if let ExprBinary(ref cmp, ref left, ref right) = expr.node {
|
|
|
|
if is_comparison_binop(cmp.node) {
|
|
|
|
check_to_owned(cx, left, right.span);
|
|
|
|
check_to_owned(cx, right, left.span)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-05-21 07:51:43 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn check_to_owned(cx: &Context, expr: &Expr, other_span: Span) {
|
2015-08-11 10:02:04 -05:00
|
|
|
match &expr.node {
|
|
|
|
&ExprMethodCall(Spanned{node: ref ident, ..}, _, ref args) => {
|
|
|
|
let name = ident.name;
|
|
|
|
if name == "to_string" ||
|
|
|
|
name == "to_owned" && is_str_arg(cx, args) {
|
|
|
|
span_lint(cx, CMP_OWNED, expr.span, &format!(
|
|
|
|
"this creates an owned instance just for comparison. \
|
2015-08-13 01:15:42 -05:00
|
|
|
Consider using `{}.as_slice()` to compare without allocation",
|
2015-08-11 10:02:04 -05:00
|
|
|
snippet(cx, other_span, "..")))
|
|
|
|
}
|
|
|
|
},
|
|
|
|
&ExprCall(ref path, _) => {
|
|
|
|
if let &ExprPath(None, ref path) = &path.node {
|
|
|
|
if match_path(path, &["String", "from_str"]) ||
|
|
|
|
match_path(path, &["String", "from"]) {
|
|
|
|
span_lint(cx, CMP_OWNED, expr.span, &format!(
|
|
|
|
"this creates an owned instance just for comparison. \
|
2015-08-13 01:15:42 -05:00
|
|
|
Consider using `{}.as_slice()` to compare without allocation",
|
2015-08-11 10:02:04 -05:00
|
|
|
snippet(cx, other_span, "..")))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => ()
|
|
|
|
}
|
2015-05-21 07:51:43 -05:00
|
|
|
}
|
2015-05-21 09:37:38 -05:00
|
|
|
|
|
|
|
fn is_str_arg(cx: &Context, args: &[P<Expr>]) -> bool {
|
2015-08-11 10:02:04 -05:00
|
|
|
args.len() == 1 && if let ty::TyStr =
|
2015-08-11 13:57:21 -05:00
|
|
|
walk_ptrs_ty(cx.tcx.expr_ty(&*args[0])).sty { true } else { false }
|
2015-05-21 09:37:38 -05:00
|
|
|
}
|
2015-08-11 11:55:07 -05:00
|
|
|
|
2015-08-13 03:32:35 -05:00
|
|
|
declare_lint!(pub MODULO_ONE, Warn, "taking a number modulo 1, which always returns 0");
|
2015-05-31 07:17:31 -05:00
|
|
|
|
|
|
|
#[derive(Copy,Clone)]
|
|
|
|
pub struct ModuloOne;
|
|
|
|
|
|
|
|
impl LintPass for ModuloOne {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(MODULO_ONE)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn check_expr(&mut self, cx: &Context, expr: &Expr) {
|
|
|
|
if let ExprBinary(ref cmp, _, ref right) = expr.node {
|
|
|
|
if let &Spanned {node: BinOp_::BiRem, ..} = cmp {
|
|
|
|
if is_lit_one(right) {
|
2015-08-12 03:46:49 -05:00
|
|
|
cx.span_lint(MODULO_ONE, expr.span, "any number modulo 1 will be 0");
|
2015-05-31 07:17:31 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn is_lit_one(expr: &Expr) -> bool {
|
|
|
|
if let ExprLit(ref spanned) = expr.node {
|
|
|
|
if let LitInt(1, _) = spanned.node {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|