2018-06-07 12:16:50 -05:00
|
|
|
use crate::utils::{get_trait_def_id, implements_trait, snippet_opt, span_lint_and_then, SpanlessEq};
|
|
|
|
use crate::utils::{higher, sugg};
|
2016-05-11 08:32:20 -05:00
|
|
|
use rustc::hir;
|
2018-01-30 10:45:35 -06:00
|
|
|
use rustc::hir::intravisit::{walk_expr, NestedVisitorMap, Visitor};
|
2016-05-11 08:32:20 -05:00
|
|
|
use rustc::lint::*;
|
2016-12-19 04:13:07 -06:00
|
|
|
use syntax::ast;
|
2016-05-11 08:32:20 -05:00
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
/// **What it does:** Checks for compound assignment operations (`+=` and
|
|
|
|
/// similar).
|
2016-05-11 08:32:20 -05:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Why is this bad?** Projects with many developers from languages without
|
|
|
|
/// those operations may find them unreadable and not worth their weight.
|
2016-05-11 08:32:20 -05:00
|
|
|
///
|
2017-08-09 02:30:56 -05:00
|
|
|
/// **Known problems:** Types implementing `OpAssign` don't necessarily
|
|
|
|
/// implement `Op`.
|
2016-05-11 08:32:20 -05:00
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-07-15 17:25:44 -05:00
|
|
|
/// ```rust
|
2016-05-11 08:32:20 -05:00
|
|
|
/// a += 1;
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-05-11 08:32:20 -05:00
|
|
|
pub ASSIGN_OPS,
|
2018-03-28 08:24:26 -05:00
|
|
|
restriction,
|
2016-08-06 03:18:36 -05:00
|
|
|
"any compound assignment operation"
|
2016-05-11 08:32:20 -05:00
|
|
|
}
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
/// **What it does:** Checks for `a = a op b` or `a = b commutative_op a`
|
|
|
|
/// patterns.
|
2016-05-11 08:32:20 -05:00
|
|
|
///
|
2016-06-29 14:24:20 -05:00
|
|
|
/// **Why is this bad?** These can be written as the shorter `a op= b`.
|
2016-05-11 08:32:20 -05:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** While forbidden by the spec, `OpAssign` traits may have
|
|
|
|
/// implementations that differ from the regular `Op` impl.
|
2016-05-11 08:32:20 -05:00
|
|
|
///
|
|
|
|
/// **Example:**
|
2016-07-15 17:25:44 -05:00
|
|
|
/// ```rust
|
2016-05-11 08:32:20 -05:00
|
|
|
/// let mut a = 5;
|
|
|
|
/// ...
|
|
|
|
/// a = a + b;
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-05-11 08:32:20 -05:00
|
|
|
pub ASSIGN_OP_PATTERN,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2016-05-11 08:32:20 -05:00
|
|
|
"assigning the result of an operation on a variable to that same variable"
|
|
|
|
}
|
|
|
|
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **What it does:** Checks for `a op= a op b` or `a op= b op a` patterns.
|
2016-07-20 08:29:24 -05:00
|
|
|
///
|
2017-08-09 02:30:56 -05:00
|
|
|
/// **Why is this bad?** Most likely these are bugs where one meant to write `a
|
|
|
|
/// op= b`.
|
2016-07-20 08:29:24 -05:00
|
|
|
///
|
2016-08-06 02:55:04 -05:00
|
|
|
/// **Known problems:** Someone might actually mean `a op= a op b`, but that
|
|
|
|
/// should rather be written as `a = (2 * a) op b` where applicable.
|
2016-07-20 08:29:24 -05:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
/// ```rust
|
|
|
|
/// let mut a = 5;
|
|
|
|
/// ...
|
|
|
|
/// a += a + b;
|
|
|
|
/// ```
|
2018-03-28 08:24:26 -05:00
|
|
|
declare_clippy_lint! {
|
2016-07-20 08:29:24 -05:00
|
|
|
pub MISREFACTORED_ASSIGN_OP,
|
2018-03-28 08:24:26 -05:00
|
|
|
complexity,
|
2016-07-20 08:29:24 -05:00
|
|
|
"having a variable on both sides of an assign op"
|
|
|
|
}
|
|
|
|
|
2016-05-11 08:32:20 -05:00
|
|
|
#[derive(Copy, Clone, Default)]
|
|
|
|
pub struct AssignOps;
|
|
|
|
|
|
|
|
impl LintPass for AssignOps {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2016-07-20 08:29:24 -05:00
|
|
|
lint_array!(ASSIGN_OPS, ASSIGN_OP_PATTERN, MISREFACTORED_ASSIGN_OP)
|
2016-05-11 08:32:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 06:13:40 -06:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for AssignOps {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx hir::Expr) {
|
2016-05-11 08:32:20 -05:00
|
|
|
match expr.node {
|
2018-07-12 02:30:57 -05:00
|
|
|
hir::ExprKind::AssignOp(op, ref lhs, ref rhs) => {
|
2016-06-29 14:24:20 -05:00
|
|
|
span_lint_and_then(cx, ASSIGN_OPS, expr.span, "assign operation detected", |db| {
|
|
|
|
let lhs = &sugg::Sugg::hir(cx, lhs, "..");
|
|
|
|
let rhs = &sugg::Sugg::hir(cx, rhs, "..");
|
|
|
|
|
2017-08-09 02:30:56 -05:00
|
|
|
db.span_suggestion(
|
|
|
|
expr.span,
|
|
|
|
"replace it with",
|
|
|
|
format!("{} = {}", lhs, sugg::make_binop(higher::binop(op.node), lhs, rhs)),
|
|
|
|
);
|
2016-06-29 14:24:20 -05:00
|
|
|
});
|
2018-07-12 02:30:57 -05:00
|
|
|
if let hir::ExprKind::Binary(binop, ref l, ref r) = rhs.node {
|
2016-07-20 08:29:24 -05:00
|
|
|
if op.node == binop.node {
|
2018-01-30 07:58:38 -06:00
|
|
|
let lint = |assignee: &hir::Expr, rhs_other: &hir::Expr| {
|
2017-09-05 04:33:04 -05:00
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
MISREFACTORED_ASSIGN_OP,
|
|
|
|
expr.span,
|
|
|
|
"variable appears on both sides of an assignment operation",
|
2018-05-22 03:21:42 -05:00
|
|
|
|db| {
|
|
|
|
if let (Some(snip_a), Some(snip_r)) =
|
|
|
|
(snippet_opt(cx, assignee.span), snippet_opt(cx, rhs_other.span))
|
|
|
|
{
|
|
|
|
let a = &sugg::Sugg::hir(cx, assignee, "..");
|
|
|
|
let r = &sugg::Sugg::hir(cx, rhs, "..");
|
|
|
|
let long =
|
|
|
|
format!("{} = {}", snip_a, sugg::make_binop(higher::binop(op.node), a, r));
|
|
|
|
db.span_suggestion(
|
|
|
|
expr.span,
|
|
|
|
&format!(
|
|
|
|
"Did you mean {} = {} {} {} or {}? Consider replacing it with",
|
|
|
|
snip_a,
|
|
|
|
snip_a,
|
|
|
|
op.node.as_str(),
|
|
|
|
snip_r,
|
|
|
|
long
|
|
|
|
),
|
|
|
|
format!("{} {}= {}", snip_a, op.node.as_str(), snip_r),
|
|
|
|
);
|
|
|
|
db.span_suggestion(expr.span, "or", long);
|
|
|
|
}
|
2017-09-05 04:33:04 -05:00
|
|
|
},
|
|
|
|
);
|
2016-07-20 08:29:24 -05:00
|
|
|
};
|
|
|
|
// lhs op= l op r
|
|
|
|
if SpanlessEq::new(cx).ignore_fn().eq_expr(lhs, l) {
|
|
|
|
lint(lhs, r);
|
|
|
|
}
|
|
|
|
// lhs op= l commutative_op r
|
|
|
|
if is_commutative(op.node) && SpanlessEq::new(cx).ignore_fn().eq_expr(lhs, r) {
|
|
|
|
lint(lhs, l);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
2018-07-12 02:30:57 -05:00
|
|
|
hir::ExprKind::Assign(ref assignee, ref e) => {
|
|
|
|
if let hir::ExprKind::Binary(op, ref l, ref r) = e.node {
|
2017-01-13 10:04:56 -06:00
|
|
|
#[allow(cyclomatic_complexity)]
|
2016-05-11 08:32:20 -05:00
|
|
|
let lint = |assignee: &hir::Expr, rhs: &hir::Expr| {
|
2017-01-13 10:04:56 -06:00
|
|
|
let ty = cx.tables.expr_ty(assignee);
|
|
|
|
let rty = cx.tables.expr_ty(rhs);
|
2016-05-11 08:32:20 -05:00
|
|
|
macro_rules! ops {
|
2016-12-21 05:30:41 -06:00
|
|
|
($op:expr,
|
|
|
|
$cx:expr,
|
|
|
|
$ty:expr,
|
|
|
|
$rty:expr,
|
2018-07-16 08:07:39 -05:00
|
|
|
$($trait_name:ident),+) => {
|
2016-05-11 08:32:20 -05:00
|
|
|
match $op {
|
2018-07-16 08:07:39 -05:00
|
|
|
$(hir::BinOpKind::$trait_name => {
|
2018-05-30 03:15:50 -05:00
|
|
|
let [krate, module] = crate::utils::paths::OPS_MODULE;
|
2016-05-11 08:32:20 -05:00
|
|
|
let path = [krate, module, concat!(stringify!($trait_name), "Assign")];
|
|
|
|
let trait_id = if let Some(trait_id) = get_trait_def_id($cx, &path) {
|
|
|
|
trait_id
|
|
|
|
} else {
|
|
|
|
return; // useless if the trait doesn't exist
|
|
|
|
};
|
2016-12-19 04:13:07 -06:00
|
|
|
// check that we are not inside an `impl AssignOp` of this exact operation
|
2017-02-02 10:53:28 -06:00
|
|
|
let parent_fn = cx.tcx.hir.get_parent(e.id);
|
|
|
|
let parent_impl = cx.tcx.hir.get_parent(parent_fn);
|
2016-12-19 04:13:07 -06:00
|
|
|
// the crate node is the only one that is not in the map
|
2017-10-23 14:20:37 -05:00
|
|
|
if_chain! {
|
|
|
|
if parent_impl != ast::CRATE_NODE_ID;
|
|
|
|
if let hir::map::Node::NodeItem(item) = cx.tcx.hir.get(parent_impl);
|
2018-07-16 08:07:39 -05:00
|
|
|
if let hir::ItemKind::Impl(_, _, _, _, Some(ref trait_ref), _, _) =
|
2017-11-04 14:56:05 -05:00
|
|
|
item.node;
|
2017-10-23 14:20:37 -05:00
|
|
|
if trait_ref.path.def.def_id() == trait_id;
|
|
|
|
then { return; }
|
|
|
|
}
|
2017-06-10 21:34:47 -05:00
|
|
|
implements_trait($cx, $ty, trait_id, &[$rty])
|
2016-05-11 08:32:20 -05:00
|
|
|
},)*
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-09 02:30:56 -05:00
|
|
|
if ops!(
|
|
|
|
op.node,
|
|
|
|
cx,
|
|
|
|
ty,
|
2018-05-22 08:45:14 -05:00
|
|
|
rty.into(),
|
2018-07-16 08:07:39 -05:00
|
|
|
Add,
|
|
|
|
Sub,
|
|
|
|
Mul,
|
|
|
|
Div,
|
|
|
|
Rem,
|
|
|
|
And,
|
|
|
|
Or,
|
|
|
|
BitAnd,
|
|
|
|
BitOr,
|
|
|
|
BitXor,
|
|
|
|
Shr,
|
|
|
|
Shl
|
2017-09-05 04:33:04 -05:00
|
|
|
) {
|
2017-08-09 02:30:56 -05:00
|
|
|
span_lint_and_then(
|
2016-06-05 18:42:39 -05:00
|
|
|
cx,
|
2017-08-09 02:30:56 -05:00
|
|
|
ASSIGN_OP_PATTERN,
|
|
|
|
expr.span,
|
|
|
|
"manual implementation of an assign operation",
|
2018-05-22 03:21:42 -05:00
|
|
|
|db| {
|
|
|
|
if let (Some(snip_a), Some(snip_r)) =
|
|
|
|
(snippet_opt(cx, assignee.span), snippet_opt(cx, rhs.span))
|
|
|
|
{
|
|
|
|
db.span_suggestion(
|
|
|
|
expr.span,
|
|
|
|
"replace it with",
|
|
|
|
format!("{} {}= {}", snip_a, op.node.as_str(), snip_r),
|
|
|
|
);
|
|
|
|
}
|
2017-08-09 02:30:56 -05:00
|
|
|
},
|
|
|
|
);
|
2016-05-11 08:32:20 -05:00
|
|
|
}
|
|
|
|
};
|
2018-01-30 10:45:35 -06:00
|
|
|
|
|
|
|
let mut visitor = ExprVisitor {
|
2018-03-15 10:07:15 -05:00
|
|
|
assignee,
|
2018-01-30 10:45:35 -06:00
|
|
|
counter: 0,
|
2018-05-22 03:21:42 -05:00
|
|
|
cx,
|
2018-01-30 10:45:35 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
walk_expr(&mut visitor, e);
|
|
|
|
|
|
|
|
if visitor.counter == 1 {
|
|
|
|
// a = a op b
|
|
|
|
if SpanlessEq::new(cx).ignore_fn().eq_expr(assignee, l) {
|
|
|
|
lint(assignee, r);
|
|
|
|
}
|
|
|
|
// a = b commutative_op a
|
|
|
|
if SpanlessEq::new(cx).ignore_fn().eq_expr(assignee, r) {
|
|
|
|
match op.node {
|
2018-07-12 02:50:09 -05:00
|
|
|
hir::BinOpKind::Add
|
|
|
|
| hir::BinOpKind::Mul
|
|
|
|
| hir::BinOpKind::And
|
|
|
|
| hir::BinOpKind::Or
|
|
|
|
| hir::BinOpKind::BitXor
|
|
|
|
| hir::BinOpKind::BitAnd
|
|
|
|
| hir::BinOpKind::BitOr => {
|
2018-01-30 10:45:35 -06:00
|
|
|
lint(assignee, l);
|
|
|
|
},
|
|
|
|
_ => {},
|
|
|
|
}
|
2016-05-11 08:32:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-20 11:21:30 -06:00
|
|
|
},
|
|
|
|
_ => {},
|
2016-05-11 08:32:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-07-20 08:29:24 -05:00
|
|
|
|
2018-07-12 02:50:09 -05:00
|
|
|
fn is_commutative(op: hir::BinOpKind) -> bool {
|
|
|
|
use rustc::hir::BinOpKind::*;
|
2016-07-20 08:29:24 -05:00
|
|
|
match op {
|
2018-07-12 02:50:09 -05:00
|
|
|
Add | Mul | And | Or | BitXor | BitAnd | BitOr | Eq | Ne => true,
|
|
|
|
Sub | Div | Rem | Shl | Shr | Lt | Le | Ge | Gt => false,
|
2016-07-20 08:29:24 -05:00
|
|
|
}
|
|
|
|
}
|
2018-01-30 10:45:35 -06:00
|
|
|
|
|
|
|
struct ExprVisitor<'a, 'tcx: 'a> {
|
|
|
|
assignee: &'a hir::Expr,
|
|
|
|
counter: u8,
|
|
|
|
cx: &'a LateContext<'a, 'tcx>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx: 'a> Visitor<'tcx> for ExprVisitor<'a, 'tcx> {
|
|
|
|
fn visit_expr(&mut self, expr: &'tcx hir::Expr) {
|
2018-03-15 10:07:15 -05:00
|
|
|
if SpanlessEq::new(self.cx).ignore_fn().eq_expr(self.assignee, expr) {
|
2018-01-30 10:45:35 -06:00
|
|
|
self.counter += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
walk_expr(self, expr);
|
|
|
|
}
|
|
|
|
fn nested_visit_map<'this>(&'this mut self) -> NestedVisitorMap<'this, 'tcx> {
|
|
|
|
NestedVisitorMap::None
|
|
|
|
}
|
|
|
|
}
|