rust/clippy_lints/src/strings.rs

198 lines
7.6 KiB
Rust
Raw Normal View History

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