2015-08-05 15:10:45 +02:00
|
|
|
//! This LintPass catches both string addition and string addition + assignment
|
2015-08-11 20:22:20 +02:00
|
|
|
//!
|
2015-08-05 15:10:45 +02:00
|
|
|
//! Note that since we have two lints where one subsumes the other, we try to
|
|
|
|
//! disable the subsumed lint unless it has a higher level
|
|
|
|
|
|
|
|
use rustc::lint::*;
|
2015-09-03 20:12:17 +05:30
|
|
|
use rustc_front::hir::*;
|
2015-08-16 08:54:43 +02:00
|
|
|
use syntax::codemap::Spanned;
|
|
|
|
|
2015-08-05 15:10:45 +02:00
|
|
|
use eq_op::is_exp_equal;
|
2015-08-21 19:00:33 +02:00
|
|
|
use utils::{match_type, span_lint, walk_ptrs_ty, get_parent_expr};
|
2015-08-21 18:48:36 +02:00
|
|
|
use utils::STRING_PATH;
|
2015-08-05 15:10:45 +02:00
|
|
|
|
|
|
|
declare_lint! {
|
|
|
|
pub STRING_ADD_ASSIGN,
|
2015-08-12 21:17:21 +02:00
|
|
|
Allow,
|
2015-08-13 10:32:35 +02:00
|
|
|
"using `x = x + ..` where x is a `String`; suggests using `push_str()` instead"
|
2015-08-05 15:10:45 +02:00
|
|
|
}
|
|
|
|
|
2015-08-12 15:50:56 +02:00
|
|
|
declare_lint! {
|
2015-08-12 15:57:50 +02:00
|
|
|
pub STRING_ADD,
|
|
|
|
Allow,
|
2015-08-13 10:32:35 +02:00
|
|
|
"using `x + ..` where x is a `String`; suggests using `push_str()` instead"
|
2015-08-12 15:50:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
2015-08-05 15:10:45 +02:00
|
|
|
pub struct StringAdd;
|
|
|
|
|
|
|
|
impl LintPass for StringAdd {
|
2015-08-12 15:50:56 +02:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-08-12 16:42:42 +02:00
|
|
|
lint_array!(STRING_ADD, STRING_ADD_ASSIGN)
|
2015-08-12 15:50:56 +02:00
|
|
|
}
|
2015-09-19 08:23:04 +05:30
|
|
|
}
|
2015-08-12 15:50:56 +02:00
|
|
|
|
2015-09-19 08:23:04 +05:30
|
|
|
impl LateLintPass for StringAdd {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext, e: &Expr) {
|
2015-11-25 02:44:40 +09:00
|
|
|
if let ExprBinary(Spanned{ node: BiAdd, .. }, ref left, _) = e.node {
|
2015-08-12 15:57:50 +02:00
|
|
|
if is_string(cx, left) {
|
|
|
|
if let Allow = cx.current_level(STRING_ADD_ASSIGN) {
|
|
|
|
// the string_add_assign is allow, so no duplicates
|
|
|
|
} else {
|
|
|
|
let parent = get_parent_expr(cx, e);
|
|
|
|
if let Some(ref p) = parent {
|
2015-11-25 02:44:40 +09:00
|
|
|
if let ExprAssign(ref target, _) = p.node {
|
2015-08-12 15:57:50 +02:00
|
|
|
// avoid duplicate matches
|
2015-08-21 12:19:07 +02:00
|
|
|
if is_exp_equal(cx, target, left) { return; }
|
2015-08-12 15:57:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-27 11:09:40 +05:30
|
|
|
span_lint(cx, STRING_ADD, e.span,
|
2015-08-26 14:26:43 +02:00
|
|
|
"you added something to a string. \
|
2015-08-27 11:09:40 +05:30
|
|
|
Consider using `String::push_str()` instead")
|
2015-08-12 15:57:50 +02:00
|
|
|
}
|
2015-11-25 02:44:40 +09:00
|
|
|
} else if let ExprAssign(ref target, ref src) = e.node {
|
2015-08-21 12:19:07 +02:00
|
|
|
if is_string(cx, target) && is_add(cx, src, target) {
|
2015-08-11 20:22:20 +02:00
|
|
|
span_lint(cx, STRING_ADD_ASSIGN, e.span,
|
2015-08-12 21:17:21 +02:00
|
|
|
"you assigned the result of adding something to this string. \
|
2015-08-13 10:32:35 +02:00
|
|
|
Consider using `String::push_str()` instead")
|
2015-08-05 15:10:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-19 08:23:04 +05:30
|
|
|
fn is_string(cx: &LateContext, e: &Expr) -> bool {
|
2015-08-21 19:00:33 +02:00
|
|
|
match_type(cx, walk_ptrs_ty(cx.tcx.expr_ty(e)), &STRING_PATH)
|
2015-08-05 15:10:45 +02:00
|
|
|
}
|
|
|
|
|
2015-09-19 08:23:04 +05:30
|
|
|
fn is_add(cx: &LateContext, src: &Expr, target: &Expr) -> bool {
|
2015-08-21 20:44:48 +02:00
|
|
|
match src.node {
|
|
|
|
ExprBinary(Spanned{ node: BiAdd, .. }, ref left, _) =>
|
2015-08-21 12:19:07 +02:00
|
|
|
is_exp_equal(cx, target, left),
|
2015-08-21 20:44:48 +02:00
|
|
|
ExprBlock(ref block) => block.stmts.is_empty() &&
|
2015-08-21 12:19:07 +02:00
|
|
|
block.expr.as_ref().map_or(false,
|
2015-08-25 14:41:35 +02:00
|
|
|
|expr| is_add(cx, expr, target)),
|
2015-08-05 15:10:45 +02:00
|
|
|
_ => false
|
|
|
|
}
|
|
|
|
}
|