rust/clippy_lints/src/suspicious_trait_impl.rs

209 lines
6.6 KiB
Rust
Raw Normal View History

2019-05-14 03:06:21 -05:00
use crate::utils::{get_trait_def_id, span_lint, trait_ref_of_method};
2018-11-27 14:14:15 -06:00
use if_chain::if_chain;
2020-01-06 10:39:50 -06:00
use rustc_hir as hir;
2020-01-09 01:13:22 -06:00
use rustc_hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
2020-01-12 00:08:41 -06:00
use rustc_lint::{LateContext, LateLintPass};
use rustc_middle::hir::map::Map;
2020-01-11 05:37:08 -06:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **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:**
2019-03-05 16:23:50 -06:00
/// ```ignore
/// impl Add for Foo {
/// type Output = Foo;
///
/// fn add(self, other: Foo) -> Foo {
/// Foo(self.0 - other.0)
/// }
/// }
/// ```
pub SUSPICIOUS_ARITHMETIC_IMPL,
2018-03-28 08:24:26 -05:00
correctness,
"suspicious use of operators in impl of arithmetic trait"
}
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// **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:**
2019-03-05 16:23:50 -06:00
/// ```ignore
/// impl AddAssign for Foo {
/// fn add_assign(&mut self, other: Foo) {
/// *self = *self - other;
/// }
/// }
/// ```
pub SUSPICIOUS_OP_ASSIGN_IMPL,
2018-03-28 08:24:26 -05:00
correctness,
"suspicious use of operators in impl of OpAssign trait"
}
2019-04-08 15:43:55 -05:00
declare_lint_pass!(SuspiciousImpl => [SUSPICIOUS_ARITHMETIC_IMPL, SUSPICIOUS_OP_ASSIGN_IMPL]);
impl<'tcx> LateLintPass<'tcx> for SuspiciousImpl {
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx hir::Expr<'_>) {
if let hir::ExprKind::Binary(binop, _, _) | hir::ExprKind::AssignOp(binop, ..) = expr.kind {
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 for more than one binary operation in the implemented function
// Linting when multiple operations are involved can result in false positives
if_chain! {
let parent_fn = cx.tcx.hir().get_parent_item(expr.hir_id);
if let hir::Node::ImplItem(impl_item) = cx.tcx.hir().get(parent_fn);
if let hir::ImplItemKind::Fn(_, body_id) = impl_item.kind;
let body = cx.tcx.hir().body(body_id);
let mut visitor = BinaryExprVisitor { nb_binops: 0 };
then {
walk_expr(&mut visitor, &body.value);
if visitor.nb_binops > 1 {
return;
}
}
}
if let Some(impl_trait) = check_binop(
cx,
expr,
binop.node,
2020-08-10 10:18:16 -05:00
&[
"Add", "Sub", "Mul", "Div", "Rem", "BitAnd", "BitOr", "BitXor", "Shl", "Shr",
2020-08-10 10:18:16 -05:00
],
2018-07-16 08:07:39 -05:00
&[
hir::BinOpKind::Add,
hir::BinOpKind::Sub,
hir::BinOpKind::Mul,
hir::BinOpKind::Div,
hir::BinOpKind::Rem,
hir::BinOpKind::BitAnd,
hir::BinOpKind::BitOr,
hir::BinOpKind::BitXor,
hir::BinOpKind::Shl,
hir::BinOpKind::Shr,
2018-07-16 08:07:39 -05:00
],
) {
span_lint(
cx,
SUSPICIOUS_ARITHMETIC_IMPL,
binop.span,
&format!("suspicious use of binary operator in `{}` impl", impl_trait),
);
}
if let Some(impl_trait) = check_binop(
cx,
expr,
binop.node,
&[
2019-05-17 16:53:54 -05:00
"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,
&format!("suspicious use of binary operator in `{}` impl", impl_trait),
);
}
}
}
}
2019-05-13 18:34:08 -05:00
fn check_binop(
cx: &LateContext<'_>,
2019-12-27 01:12:26 -06:00
expr: &hir::Expr<'_>,
2018-07-12 02:50:09 -05:00
binop: hir::BinOpKind,
2019-05-17 16:53:54 -05:00
traits: &[&'static str],
2018-07-12 02:50:09 -05:00
expected_ops: &[hir::BinOpKind],
2019-05-17 16:53:54 -05:00
) -> Option<&'static str> {
let mut trait_ids = vec![];
2019-05-17 16:53:54 -05:00
let [krate, module] = crate::utils::paths::OPS_MODULE;
2019-05-13 18:34:08 -05:00
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
2019-02-24 12:43:15 -06:00
let parent_fn = cx.tcx.hir().get_parent_item(expr.hir_id);
if_chain! {
if let Some(trait_ref) = trait_ref_of_method(cx, parent_fn);
if let Some(idx) = trait_ids.iter().position(|&tid| tid == trait_ref.path.res.def_id());
if binop != expected_ops[idx];
then{
return Some(traits[idx])
}
}
None
}
struct BinaryExprVisitor {
nb_binops: u32,
}
impl<'tcx> Visitor<'tcx> for BinaryExprVisitor {
2020-01-09 01:13:22 -06:00
type Map = Map<'tcx>;
2019-12-27 01:12:26 -06:00
fn visit_expr(&mut self, expr: &'tcx hir::Expr<'_>) {
2019-09-27 10:16:06 -05:00
match expr.kind {
2018-07-12 02:30:57 -05:00
hir::ExprKind::Binary(..)
| hir::ExprKind::Unary(hir::UnOp::UnNot | hir::UnOp::UnNeg, _)
| hir::ExprKind::AssignOp(..) => self.nb_binops += 1,
_ => {},
}
walk_expr(self, expr);
}
fn nested_visit_map(&mut self) -> NestedVisitorMap<Self::Map> {
NestedVisitorMap::None
}
}