rust/src/strings.rs

104 lines
4.0 KiB
Rust
Raw Normal View History

//! This LintPass catches both string addition and string addition + assignment
//!
//! 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::*;
use rustc_front::hir::*;
use syntax::codemap::Spanned;
use eq_op::is_exp_equal;
use utils::{match_type, span_lint, walk_ptrs_ty, get_parent_expr};
use utils::STRING_PATH;
/// **What it does:** This lint matches code of the form `x = x + y` (without `let`!)
///
/// **Why is this bad?** Because this expression needs another copy as opposed to `x.push_str(y)` (in practice LLVM will usually elide it, though). Despite [llogiq](https://github.com/llogiq)'s reservations, this lint also is `allow` by default, as some people opine that it's more readable.
///
/// **Known problems:** None. Well apart from the lint being `allow` by default. :smile:
///
/// **Example:**
///
/// ```
/// let mut x = "Hello".to_owned();
/// x = x + ", World";
/// ```
declare_lint! {
pub STRING_ADD_ASSIGN,
2015-08-12 14:17:21 -05:00
Allow,
"using `x = x + ..` where x is a `String`; suggests using `push_str()` instead"
}
/// **What it does:** The `string_add` lint matches all instances of `x + _` where `x` is of type `String`, but only if [`string_add_assign`](#string_add_assign) does *not* match. It is `Allow` by default.
///
/// **Why is this bad?** It's not bad in and of itself. However, this particular `Add` implementation is asymmetric (the other operand need not be `String`, but `x` does), while addition as mathematically defined is symmetric, also the `String::push_str(_)` function is a perfectly good replacement. Therefore some dislike it and wish not to have it in their code.
///
/// That said, other people think that String addition, having a long tradition in other languages is actually fine, which is why we decided to make this particular lint `allow` by default.
///
/// **Known problems:** None
///
/// **Example:**
///
/// ```
/// let x = "Hello".to_owned();
/// x + ", World"
/// ```
declare_lint! {
2015-08-12 08:57:50 -05:00
pub STRING_ADD,
Allow,
"using `x + ..` where x is a `String`; suggests using `push_str()` instead"
}
#[derive(Copy, Clone)]
pub struct StringAdd;
impl LintPass for StringAdd {
fn get_lints(&self) -> LintArray {
lint_array!(STRING_ADD, STRING_ADD_ASSIGN)
}
}
impl LateLintPass for StringAdd {
fn check_expr(&mut self, cx: &LateContext, e: &Expr) {
2015-11-24 11:44:40 -06:00
if let ExprBinary(Spanned{ node: BiAdd, .. }, ref left, _) = e.node {
2015-08-12 08:57:50 -05: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-24 11:44:40 -06:00
if let ExprAssign(ref target, _) = p.node {
2015-08-12 08:57:50 -05:00
// avoid duplicate matches
2015-08-21 05:19:07 -05:00
if is_exp_equal(cx, target, left) { return; }
2015-08-12 08:57:50 -05:00
}
}
}
span_lint(cx, STRING_ADD, e.span,
"you added something to a string. \
Consider using `String::push_str()` instead")
2015-08-12 08:57:50 -05:00
}
2015-11-24 11:44:40 -06:00
} else if let ExprAssign(ref target, ref src) = e.node {
2015-08-21 05:19:07 -05:00
if is_string(cx, target) && is_add(cx, src, target) {
span_lint(cx, STRING_ADD_ASSIGN, e.span,
2015-08-12 14:17:21 -05:00
"you assigned the result of adding something to this string. \
Consider using `String::push_str()` instead")
}
}
}
}
fn is_string(cx: &LateContext, e: &Expr) -> bool {
match_type(cx, walk_ptrs_ty(cx.tcx.expr_ty(e)), &STRING_PATH)
}
fn is_add(cx: &LateContext, src: &Expr, target: &Expr) -> bool {
2015-08-21 13:44:48 -05:00
match src.node {
ExprBinary(Spanned{ node: BiAdd, .. }, ref left, _) =>
2015-08-21 05:19:07 -05:00
is_exp_equal(cx, target, left),
2015-08-21 13:44:48 -05:00
ExprBlock(ref block) => block.stmts.is_empty() &&
2015-08-21 05:19:07 -05:00
block.expr.as_ref().map_or(false,
|expr| is_add(cx, expr, target)),
_ => false
}
}