rust/clippy_lints/src/suspicious_trait_impl.rs

221 lines
6.9 KiB
Rust
Raw Normal View History

2018-10-06 11:18:06 -05:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use crate::rustc::hir;
use crate::rustc::hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
2018-11-27 14:14:15 -06:00
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use crate::rustc::{declare_tool_lint, lint_array};
use crate::syntax::ast;
2018-05-30 03:15:50 -05:00
use crate::utils::{get_trait_def_id, span_lint};
2018-11-27 14:14:15 -06:00
use if_chain::if_chain;
/// **What it does:** Lints for suspicious operations in impls of arithmetic operators, e.g.
/// subtracting elements in an Add impl.
///
/// **Why this is bad?** This is probably a typo or copy-and-paste error and not intended.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
/// impl Add for Foo {
/// type Output = Foo;
///
/// fn add(self, other: Foo) -> Foo {
/// Foo(self.0 - other.0)
/// }
/// }
/// ```
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
pub SUSPICIOUS_ARITHMETIC_IMPL,
2018-03-28 08:24:26 -05:00
correctness,
"suspicious use of operators in impl of arithmetic trait"
}
/// **What it does:** Lints for suspicious operations in impls of OpAssign, e.g.
/// subtracting elements in an AddAssign impl.
///
/// **Why this is bad?** This is probably a typo or copy-and-paste error and not intended.
///
/// **Known problems:** None.
///
/// **Example:**
/// ```rust
/// impl AddAssign for Foo {
/// fn add_assign(&mut self, other: Foo) {
/// *self = *self - other;
/// }
/// }
/// ```
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
pub SUSPICIOUS_OP_ASSIGN_IMPL,
2018-03-28 08:24:26 -05:00
correctness,
"suspicious use of operators in impl of OpAssign trait"
}
#[derive(Copy, Clone)]
pub struct SuspiciousImpl;
impl LintPass for SuspiciousImpl {
fn get_lints(&self) -> LintArray {
lint_array![SUSPICIOUS_ARITHMETIC_IMPL, SUSPICIOUS_OP_ASSIGN_IMPL]
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for SuspiciousImpl {
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr) {
2018-07-12 02:30:57 -05:00
if let hir::ExprKind::Binary(binop, _, _) = expr.node {
match binop.node {
2018-11-27 14:14:15 -06:00
hir::BinOpKind::Eq
2018-07-16 08:07:39 -05:00
| hir::BinOpKind::Lt
| hir::BinOpKind::Le
| hir::BinOpKind::Ne
| hir::BinOpKind::Ge
2018-11-27 14:14:15 -06:00
| hir::BinOpKind::Gt => return,
_ => {},
}
// Check if the binary expression is part of another bi/unary expression
// as a child node
let mut parent_expr = cx.tcx.hir().get_parent_node(expr.id);
while parent_expr != ast::CRATE_NODE_ID {
if let hir::Node::Expr(e) = cx.tcx.hir().get(parent_expr) {
match e.node {
2018-07-12 02:30:57 -05:00
hir::ExprKind::Binary(..)
| hir::ExprKind::Unary(hir::UnOp::UnNot, _)
| hir::ExprKind::Unary(hir::UnOp::UnNeg, _) => return,
_ => {},
}
}
parent_expr = cx.tcx.hir().get_parent_node(parent_expr);
}
// as a parent node
2018-11-27 14:14:15 -06:00
let mut visitor = BinaryExprVisitor { in_binary_expr: false };
walk_expr(&mut visitor, expr);
if visitor.in_binary_expr {
return;
}
if let Some(impl_trait) = check_binop(
cx,
expr,
binop.node,
&["Add", "Sub", "Mul", "Div"],
2018-07-16 08:07:39 -05:00
&[
hir::BinOpKind::Add,
hir::BinOpKind::Sub,
hir::BinOpKind::Mul,
hir::BinOpKind::Div,
],
) {
span_lint(
cx,
SUSPICIOUS_ARITHMETIC_IMPL,
binop.span,
2018-11-27 14:14:15 -06:00
&format!(r#"Suspicious use of binary operator in `{}` impl"#, impl_trait),
);
}
if let Some(impl_trait) = check_binop(
cx,
expr,
binop.node,
&[
"AddAssign",
"SubAssign",
"MulAssign",
"DivAssign",
"BitAndAssign",
"BitOrAssign",
"BitXorAssign",
"RemAssign",
"ShlAssign",
"ShrAssign",
],
&[
2018-07-16 08:07:39 -05:00
hir::BinOpKind::Add,
hir::BinOpKind::Sub,
hir::BinOpKind::Mul,
hir::BinOpKind::Div,
hir::BinOpKind::BitAnd,
hir::BinOpKind::BitOr,
hir::BinOpKind::BitXor,
hir::BinOpKind::Rem,
hir::BinOpKind::Shl,
hir::BinOpKind::Shr,
],
) {
span_lint(
cx,
SUSPICIOUS_OP_ASSIGN_IMPL,
binop.span,
2018-11-27 14:14:15 -06:00
&format!(r#"Suspicious use of binary operator in `{}` impl"#, impl_trait),
);
}
}
}
}
fn check_binop<'a>(
2018-07-23 06:01:12 -05:00
cx: &LateContext<'_, '_>,
expr: &hir::Expr,
2018-07-12 02:50:09 -05:00
binop: hir::BinOpKind,
traits: &[&'a str],
2018-07-12 02:50:09 -05:00
expected_ops: &[hir::BinOpKind],
) -> Option<&'a str> {
let mut trait_ids = vec![];
2018-05-30 03:15:50 -05:00
let [krate, module] = crate::utils::paths::OPS_MODULE;
for t in traits {
let path = [krate, module, t];
if let Some(trait_id) = get_trait_def_id(cx, &path) {
trait_ids.push(trait_id);
} else {
return None;
}
}
// Get the actually implemented trait
let parent_fn = cx.tcx.hir().get_parent(expr.id);
let parent_impl = cx.tcx.hir().get_parent(parent_fn);
if_chain! {
if parent_impl != ast::CRATE_NODE_ID;
if let hir::Node::Item(item) = cx.tcx.hir().get(parent_impl);
2018-07-16 08:07:39 -05:00
if let hir::ItemKind::Impl(_, _, _, _, Some(ref trait_ref), _, _) = item.node;
if let Some(idx) = trait_ids.iter().position(|&tid| tid == trait_ref.path.def.def_id());
if binop != expected_ops[idx];
then{
return Some(traits[idx])
}
}
None
}
struct BinaryExprVisitor {
in_binary_expr: bool,
}
impl<'a, 'tcx: 'a> Visitor<'tcx> for BinaryExprVisitor {
fn visit_expr(&mut self, expr: &'tcx hir::Expr) {
match expr.node {
2018-07-12 02:30:57 -05:00
hir::ExprKind::Binary(..)
| hir::ExprKind::Unary(hir::UnOp::UnNot, _)
2018-11-27 14:14:15 -06:00
| hir::ExprKind::Unary(hir::UnOp::UnNeg, _) => self.in_binary_expr = true,
_ => {},
}
walk_expr(self, expr);
}
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
NestedVisitorMap::None
}
}