2018-05-30 08:15:50 +00: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};
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::hir::*;
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
|
|
|
use rustc::{declare_tool_lint, lint_array};
|
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use syntax::source_map::Spanned;
|
2015-08-05 13:10:45 +00:00
|
|
|
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **What it does:** Checks for string appends of the form `x = x + y` (without
|
|
|
|
/// `let`!).
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **Why is this bad?** It's not really bad, but some people think that the
|
2018-08-23 15:38:41 +00:00
|
|
|
/// `.push_str(_)` method is more readable.
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
2016-02-18 19:12:33 +00:00
|
|
|
/// **Known problems:** None.
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
2016-07-15 22:25:44 +00:00
|
|
|
/// ```rust
|
2015-12-11 00:22:27 +00:00
|
|
|
/// let mut x = "Hello".to_owned();
|
|
|
|
/// x = x + ", World";
|
|
|
|
/// ```
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2015-08-05 13:10:45 +00:00
|
|
|
pub STRING_ADD_ASSIGN,
|
2018-03-28 13:24:26 +00:00
|
|
|
pedantic,
|
2016-08-06 08:18:36 +00:00
|
|
|
"using `x = x + ..` where x is a `String` instead of `push_str()`"
|
2015-08-05 13:10:45 +00:00
|
|
|
}
|
|
|
|
|
2016-08-06 07:55:04 +00: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 00:22:27 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00: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 00:22:27 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00: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 00:22:27 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **Known problems:** None.
|
2015-12-11 00:22:27 +00:00
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
2016-07-15 22:25:44 +00:00
|
|
|
/// ```rust
|
2015-12-11 00:22:27 +00:00
|
|
|
/// let x = "Hello".to_owned();
|
|
|
|
/// x + ", World"
|
|
|
|
/// ```
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2015-08-12 13:57:50 +00:00
|
|
|
pub STRING_ADD,
|
2018-03-28 13:24:26 +00:00
|
|
|
restriction,
|
2016-08-06 08:18:36 +00:00
|
|
|
"using `x + ..` where x is a `String` instead of `push_str()`"
|
2015-08-12 13:50:56 +00:00
|
|
|
}
|
|
|
|
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **What it does:** Checks for the `as_bytes` method called on string literals
|
|
|
|
/// that contain only ASCII characters.
|
2016-01-19 18:14:49 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00: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 18:14:49 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **Known Problems:** None.
|
2016-01-19 18:14:49 +00:00
|
|
|
///
|
2016-08-06 07:55:04 +00:00
|
|
|
/// **Example:**
|
2016-07-15 22:25:44 +00:00
|
|
|
/// ```rust
|
2016-01-19 18:14:49 +00:00
|
|
|
/// let bs = "a byte string".as_bytes();
|
|
|
|
/// ```
|
2018-03-28 13:24:26 +00:00
|
|
|
declare_clippy_lint! {
|
2016-01-19 18:14:49 +00:00
|
|
|
pub STRING_LIT_AS_BYTES,
|
2018-03-28 13:24:26 +00:00
|
|
|
style,
|
2016-08-06 08:18:36 +00:00
|
|
|
"calling `as_bytes` on a string literal instead of using a byte string literal"
|
2016-01-19 18:14:49 +00:00
|
|
|
}
|
|
|
|
|
2015-08-12 13:50:56 +00:00
|
|
|
#[derive(Copy, Clone)]
|
2015-08-05 13:10:45 +00:00
|
|
|
pub struct StringAdd;
|
|
|
|
|
|
|
|
impl LintPass for StringAdd {
|
2015-08-12 13:50:56 +00:00
|
|
|
fn get_lints(&self) -> LintArray {
|
2015-08-12 14:42:42 +00:00
|
|
|
lint_array!(STRING_ADD, STRING_ADD_ASSIGN)
|
2015-08-12 13:50:56 +00:00
|
|
|
}
|
2019-01-26 19:40:55 +00:00
|
|
|
|
|
|
|
fn name(&self) -> &'static str {
|
|
|
|
"StringAdd"
|
|
|
|
}
|
2015-09-19 02:53:04 +00:00
|
|
|
}
|
2015-08-12 13:50:56 +00:00
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for StringAdd {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2018-10-05 16:06:05 +00:00
|
|
|
if let ExprKind::Binary(
|
|
|
|
Spanned {
|
|
|
|
node: BinOpKind::Add, ..
|
|
|
|
},
|
|
|
|
ref left,
|
|
|
|
_,
|
|
|
|
) = e.node
|
|
|
|
{
|
2015-08-12 13:57:50 +00:00
|
|
|
if is_string(cx, left) {
|
2017-08-11 12:11:46 +00:00
|
|
|
if !is_allowed(cx, STRING_ADD_ASSIGN, e.id) {
|
2015-08-12 13:57:50 +00:00
|
|
|
let parent = get_parent_expr(cx, e);
|
2016-08-01 14:59:14 +00:00
|
|
|
if let Some(p) = parent {
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Assign(ref target, _) = p.node {
|
2015-08-12 13:57:50 +00:00
|
|
|
// avoid duplicate matches
|
2016-02-06 19:13:25 +00:00
|
|
|
if SpanlessEq::new(cx).eq_expr(target, left) {
|
2016-01-04 04:26:12 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-08-12 13:57:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-09 07:30:56 +00:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
STRING_ADD,
|
|
|
|
e.span,
|
|
|
|
"you added something to a string. Consider using `String::push_str()` instead",
|
|
|
|
);
|
2015-08-12 13:57:50 +00:00
|
|
|
}
|
2018-07-12 07:30:57 +00:00
|
|
|
} else if let ExprKind::Assign(ref target, ref src) = e.node {
|
2015-08-21 10:19:07 +00:00
|
|
|
if is_string(cx, target) && is_add(cx, src, target) {
|
2017-08-09 07:30:56 +00:00
|
|
|
span_lint(
|
|
|
|
cx,
|
|
|
|
STRING_ADD_ASSIGN,
|
|
|
|
e.span,
|
|
|
|
"you assigned the result of adding something to this string. Consider using \
|
2017-09-05 09:33:04 +00:00
|
|
|
`String::push_str()` instead",
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2015-08-05 13:10:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-23 11:01:12 +00:00
|
|
|
fn is_string(cx: &LateContext<'_, '_>, e: &Expr) -> bool {
|
2017-01-13 16:04:56 +00:00
|
|
|
match_type(cx, walk_ptrs_ty(cx.tables.expr_ty(e)), &paths::STRING)
|
2015-08-05 13:10:45 +00:00
|
|
|
}
|
|
|
|
|
2018-07-23 11:01:12 +00:00
|
|
|
fn is_add(cx: &LateContext<'_, '_>, src: &Expr, target: &Expr) -> bool {
|
2015-08-21 18:44:48 +00:00
|
|
|
match src.node {
|
2018-10-05 16:06:05 +00:00
|
|
|
ExprKind::Binary(
|
|
|
|
Spanned {
|
|
|
|
node: BinOpKind::Add, ..
|
|
|
|
},
|
|
|
|
ref left,
|
|
|
|
_,
|
|
|
|
) => SpanlessEq::new(cx).eq_expr(target, left),
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Block(ref block, _) => {
|
2018-10-05 16:06:05 +00:00
|
|
|
block.stmts.is_empty() && block.expr.as_ref().map_or(false, |expr| is_add(cx, expr, target))
|
2016-12-20 17:21:30 +00:00
|
|
|
},
|
2016-01-04 04:26:12 +00:00
|
|
|
_ => false,
|
2015-08-05 13:10:45 +00:00
|
|
|
}
|
|
|
|
}
|
2016-01-19 18:14:49 +00:00
|
|
|
|
|
|
|
#[derive(Copy, Clone)]
|
|
|
|
pub struct StringLitAsBytes;
|
|
|
|
|
|
|
|
impl LintPass for StringLitAsBytes {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
|
|
|
lint_array!(STRING_LIT_AS_BYTES)
|
|
|
|
}
|
2019-01-26 19:40:55 +00:00
|
|
|
|
|
|
|
fn name(&self) -> &'static str {
|
|
|
|
"StringLiteralAsBytes"
|
|
|
|
}
|
2016-01-19 18:14:49 +00:00
|
|
|
}
|
|
|
|
|
2016-12-07 12:13:40 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for StringLitAsBytes {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, e: &'tcx Expr) {
|
2018-11-27 14:13:57 +00:00
|
|
|
use crate::utils::{in_macro, snippet, snippet_with_applicability};
|
2018-12-29 15:04:45 +00:00
|
|
|
use syntax::ast::{LitKind, StrStyle};
|
2016-01-19 18:14:49 +00:00
|
|
|
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::MethodCall(ref path, _, ref args) = e.node {
|
2018-06-28 13:46:58 +00:00
|
|
|
if path.ident.name == "as_bytes" {
|
2018-07-12 07:30:57 +00:00
|
|
|
if let ExprKind::Lit(ref lit) = args[0].node {
|
2018-10-26 16:10:20 +00:00
|
|
|
if let LitKind::Str(ref lit_content, style) = lit.node {
|
2018-10-24 15:49:39 +00:00
|
|
|
let callsite = snippet(cx, args[0].span.source_callsite(), r#""foo""#);
|
2018-10-26 16:10:20 +00:00
|
|
|
let expanded = if let StrStyle::Raw(n) = style {
|
|
|
|
let term = (0..n).map(|_| '#').collect::<String>();
|
|
|
|
format!("r{0}\"{1}\"{0}", term, lit_content.as_str())
|
|
|
|
} else {
|
|
|
|
format!("\"{}\"", lit_content.as_str())
|
|
|
|
};
|
2018-11-27 14:13:57 +00:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2018-10-05 16:06:05 +00:00
|
|
|
if callsite.starts_with("include_str!") {
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
STRING_LIT_AS_BYTES,
|
|
|
|
e.span,
|
|
|
|
"calling `as_bytes()` on `include_str!(..)`",
|
|
|
|
"consider using `include_bytes!(..)` instead",
|
2018-11-27 14:13:57 +00:00
|
|
|
snippet_with_applicability(cx, args[0].span, r#""foo""#, &mut applicability).replacen(
|
|
|
|
"include_str",
|
|
|
|
"include_bytes",
|
|
|
|
1,
|
|
|
|
),
|
|
|
|
applicability,
|
2018-10-05 16:06:05 +00:00
|
|
|
);
|
|
|
|
} else if callsite == expanded
|
|
|
|
&& lit_content.as_str().chars().all(|c| c.is_ascii())
|
|
|
|
&& !in_macro(args[0].span)
|
|
|
|
{
|
2017-08-09 07:30:56 +00: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",
|
2018-11-27 14:13:57 +00:00
|
|
|
format!(
|
|
|
|
"b{}",
|
|
|
|
snippet_with_applicability(cx, args[0].span, r#""foo""#, &mut applicability)
|
|
|
|
),
|
|
|
|
applicability,
|
2017-08-09 07:30:56 +00:00
|
|
|
);
|
2016-01-19 18:14:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|