2016-04-07 17:46:48 +02:00
|
|
|
use rustc::hir::*;
|
2016-04-14 18:13:15 +02:00
|
|
|
use rustc::lint::*;
|
2015-08-16 08:54:43 +02:00
|
|
|
use syntax::codemap::Spanned;
|
2018-05-30 10:15:50 +02:00
|
|
|
use crate::utils::SpanlessEq;
|
|
|
|
use crate::utils::{get_parent_expr, is_allowed, match_type, paths, span_lint, span_lint_and_sugg, walk_ptrs_ty};
|
2015-08-05 15:10:45 +02:00
|
|
|
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **What it does:** Checks for string appends of the form `x = x + y` (without
|
|
|
|
/// `let`!).
|
2015-12-11 01:22:27 +01:00
|
|
|
///
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **Why is this bad?** It's not really bad, but some people think that the
|
2018-03-28 15:24:26 +02:00
|
|
|
/// `.push_str(_)` method is more readable. Also creates a new heap allocation and throws
|
|
|
|
/// away the old one.
|
2015-12-11 01:22:27 +01:00
|
|
|
///
|
2016-02-18 20:12:33 +01:00
|
|
|
/// **Known problems:** None.
|
2015-12-11 01:22:27 +01:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
2016-07-16 00:25:44 +02:00
|
|
|
/// ```rust
|
2015-12-11 01:22:27 +01:00
|
|
|
/// let mut x = "Hello".to_owned();
|
|
|
|
/// x = x + ", World";
|
|
|
|
/// ```
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2015-08-05 15:10:45 +02:00
|
|
|
pub STRING_ADD_ASSIGN,
|
2018-03-28 15:24:26 +02:00
|
|
|
pedantic,
|
2016-08-06 10:18:36 +02:00
|
|
|
"using `x = x + ..` where x is a `String` instead of `push_str()`"
|
2015-08-05 15:10:45 +02:00
|
|
|
}
|
|
|
|
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **What it does:** Checks for all instances of `x + _` where `x` is of type
|
|
|
|
/// `String`, but only if [`string_add_assign`](#string_add_assign) does *not*
|
|
|
|
/// match.
|
2015-12-11 01:22:27 +01:00
|
|
|
///
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **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.
|
2015-12-11 01:22:27 +01:00
|
|
|
///
|
2016-08-06 09:55:04 +02:00
|
|
|
/// 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.
|
2015-12-11 01:22:27 +01:00
|
|
|
///
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **Known problems:** None.
|
2015-12-11 01:22:27 +01:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
2016-07-16 00:25:44 +02:00
|
|
|
/// ```rust
|
2015-12-11 01:22:27 +01:00
|
|
|
/// let x = "Hello".to_owned();
|
|
|
|
/// x + ", World"
|
|
|
|
/// ```
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2015-08-12 15:57:50 +02:00
|
|
|
pub STRING_ADD,
|
2018-03-28 15:24:26 +02:00
|
|
|
restriction,
|
2016-08-06 10:18:36 +02:00
|
|
|
"using `x + ..` where x is a `String` instead of `push_str()`"
|
2015-08-12 15:50:56 +02:00
|
|
|
}
|
|
|
|
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **What it does:** Checks for the `as_bytes` method called on string literals
|
|
|
|
/// that contain only ASCII characters.
|
2016-01-19 19:14:49 +01:00
|
|
|
///
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **Why is this bad?** Byte string literals (e.g. `b"foo"`) can be used
|
|
|
|
/// instead. They are shorter but less discoverable than `as_bytes()`.
|
2016-01-19 19:14:49 +01:00
|
|
|
///
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **Known Problems:** None.
|
2016-01-19 19:14:49 +01:00
|
|
|
///
|
2016-08-06 09:55:04 +02:00
|
|
|
/// **Example:**
|
2016-07-16 00:25:44 +02:00
|
|
|
/// ```rust
|
2016-01-19 19:14:49 +01:00
|
|
|
/// let bs = "a byte string".as_bytes();
|
|
|
|
/// ```
|
2018-03-28 15:24:26 +02:00
|
|
|
declare_clippy_lint! {
|
2016-01-19 19:14:49 +01:00
|
|
|
pub STRING_LIT_AS_BYTES,
|
2018-03-28 15:24:26 +02:00
|
|
|
style,
|
2016-08-06 10:18:36 +02:00
|
|
|
"calling `as_bytes` on a string literal instead of using a byte string literal"
|
2016-01-19 19:14:49 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2016-12-07 13:13:40 +01:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for StringAdd {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2016-04-14 20:14:03 +02:00
|
|
|
if let ExprBinary(Spanned { node: BiAdd, .. }, ref left, _) = e.node {
|
2015-08-12 15:57:50 +02:00
|
|
|
if is_string(cx, left) {
|
2017-08-11 14:11:46 +02:00
|
|
|
if !is_allowed(cx, STRING_ADD_ASSIGN, e.id) {
|
2015-08-12 15:57:50 +02:00
|
|
|
let parent = get_parent_expr(cx, e);
|
2016-08-01 16:59:14 +02:00
|
|
|
if let Some(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
|
2016-02-06 20:13:25 +01:00
|
|
|
if SpanlessEq::new(cx).eq_expr(target, left) {
|
2016-01-04 09:56:12 +05:30
|
|
|
return;
|
|
|
|
}
|
2015-08-12 15:57:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-09 09:30:56 +02:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
STRING_ADD,
|
|
|
|
e.span,
|
|
|
|
"you added something to a string. 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) {
|
2017-08-09 09:30:56 +02:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
STRING_ADD_ASSIGN,
|
|
|
|
e.span,
|
|
|
|
"you assigned the result of adding something to this string. Consider using \
|
2017-09-05 11:33:04 +02:00
|
|
|
`String::push_str()` instead",
|
2017-08-09 09:30:56 +02:00
|
|
|
);
|
2015-08-05 15:10:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-19 08:23:04 +05:30
|
|
|
fn is_string(cx: &LateContext, e: &Expr) -> bool {
|
2017-01-13 17:04:56 +01:00
|
|
|
match_type(cx, walk_ptrs_ty(cx.tables.expr_ty(e)), &paths::STRING)
|
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 {
|
2016-04-14 20:14:03 +02:00
|
|
|
ExprBinary(Spanned { node: BiAdd, .. }, ref left, _) => SpanlessEq::new(cx).eq_expr(target, left),
|
2018-05-17 11:21:15 +02:00
|
|
|
ExprBlock(ref block, _) => {
|
2017-11-05 04:55:56 +09:00
|
|
|
block.stmts.is_empty()
|
|
|
|
&& block
|
2017-09-05 11:33:04 +02:00
|
|
|
.expr
|
|
|
|
.as_ref()
|
|
|
|
.map_or(false, |expr| is_add(cx, expr, target))
|
2016-12-20 18:21:30 +01:00
|
|
|
},
|
2016-01-04 09:56:12 +05:30
|
|
|
_ => false,
|
2015-08-05 15:10:45 +02:00
|
|
|
}
|
|
|
|
}
|
2016-01-19 19:14:49 +01:00
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct StringLitAsBytes;
|
|
|
|
|
|
|
|
impl LintPass for StringLitAsBytes {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(STRING_LIT_AS_BYTES)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 13:13:40 +01:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for StringLitAsBytes {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2016-02-12 18:35:44 +01:00
|
|
|
use syntax::ast::LitKind;
|
2018-05-30 10:15:50 +02:00
|
|
|
use crate::utils::{in_macro, snippet};
|
2016-01-19 19:14:49 +01:00
|
|
|
|
2017-07-10 10:17:40 +02:00
|
|
|
if let ExprMethodCall(ref path, _, ref args) = e.node {
|
|
|
|
if path.name == "as_bytes" {
|
2016-01-19 19:14:49 +01:00
|
|
|
if let ExprLit(ref lit) = args[0].node {
|
2016-02-12 18:35:44 +01:00
|
|
|
if let LitKind::Str(ref lit_content, _) = lit.node {
|
2017-04-01 00:14:04 +02:00
|
|
|
if lit_content.as_str().chars().all(|c| c.is_ascii()) && !in_macro(args[0].span) {
|
2017-08-09 09:30:56 +02:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
STRING_LIT_AS_BYTES,
|
|
|
|
e.span,
|
|
|
|
"calling `as_bytes()` on a string literal",
|
|
|
|
"consider using a byte string literal instead",
|
|
|
|
format!("b{}", snippet(cx, args[0].span, r#""foo""#)),
|
|
|
|
);
|
2016-01-19 19:14:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|