2021-02-11 00:30:37 +00:00
|
|
|
use if_chain::if_chain;
|
2021-02-11 10:46:11 +00:00
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use rustc_hir::*;
|
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2021-02-11 00:30:37 +00:00
|
|
|
|
|
|
|
use crate::utils::span_lint_and_sugg;
|
2021-02-10 19:47:04 +00:00
|
|
|
|
|
|
|
declare_clippy_lint! {
|
|
|
|
/// **What it does:**
|
|
|
|
/// Checks for function invocations of the form `primitive::from_str_radix(s, 10)`
|
|
|
|
///
|
|
|
|
/// **Why is this bad?**
|
|
|
|
/// This specific common use case can be rewritten as `s.parse::<primitive>()`
|
|
|
|
/// (and in most cases, the turbofish can be removed), which reduces code length
|
|
|
|
/// and complexity.
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
2021-02-11 10:46:11 +00:00
|
|
|
///
|
2021-02-10 19:47:04 +00:00
|
|
|
/// **Example:**
|
|
|
|
///
|
2021-02-11 11:15:06 +00:00
|
|
|
/// ```ignore
|
2021-02-10 19:47:04 +00:00
|
|
|
/// let input: &str = get_input();
|
|
|
|
/// let num = u16::from_str_radix(input, 10)?;
|
|
|
|
/// ```
|
|
|
|
/// Use instead:
|
2021-02-11 11:15:06 +00:00
|
|
|
/// ```ignore
|
2021-02-10 19:47:04 +00:00
|
|
|
/// let input: &str = get_input();
|
|
|
|
/// let num: u16 = input.parse()?;
|
|
|
|
/// ```
|
|
|
|
pub FROM_STR_RADIX_10,
|
|
|
|
style,
|
2021-02-11 00:30:37 +00:00
|
|
|
"from_str_radix with radix 10"
|
2021-02-10 19:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint_pass!(FromStrRadix10 => [FROM_STR_RADIX_10]);
|
|
|
|
|
2021-02-11 00:30:37 +00:00
|
|
|
impl LateLintPass<'tcx> for FromStrRadix10 {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, exp: &Expr<'tcx>) {
|
|
|
|
if_chain! {
|
|
|
|
if let ExprKind::Call(maybe_path, arguments) = &exp.kind;
|
|
|
|
if let ExprKind::Path(qpath) = &maybe_path.kind;
|
|
|
|
if let QPath::TypeRelative(ty, pathseg) = &qpath;
|
|
|
|
|
|
|
|
// check if the first part of the path is some integer primitive
|
|
|
|
if let TyKind::Path(ty_qpath) = &ty.kind;
|
|
|
|
let ty_res = cx.qpath_res(ty_qpath, ty.hir_id);
|
|
|
|
if let def::Res::PrimTy(prim_ty) = ty_res;
|
2021-02-12 09:53:52 +00:00
|
|
|
if matches!(prim_ty, PrimTy::Int(_) | PrimTy::Uint(_));
|
2021-02-11 00:30:37 +00:00
|
|
|
|
|
|
|
// check if the second part of the path indeed calls the associated
|
|
|
|
// function `from_str_radix`
|
|
|
|
if pathseg.ident.name.as_str() == "from_str_radix";
|
|
|
|
|
2021-02-11 10:30:23 +00:00
|
|
|
// check if the second argument is a primitive `10`
|
2021-02-11 00:30:37 +00:00
|
|
|
if arguments.len() == 2;
|
2021-02-11 10:30:23 +00:00
|
|
|
if let ExprKind::Lit(lit) = &arguments[1].kind;
|
|
|
|
if let rustc_ast::ast::LitKind::Int(10, _) = lit.node;
|
2021-02-11 00:30:37 +00:00
|
|
|
|
|
|
|
then {
|
2021-02-11 10:30:23 +00:00
|
|
|
let orig_string = crate::utils::snippet(cx, arguments[0].span, "string");
|
2021-02-11 00:30:37 +00:00
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
FROM_STR_RADIX_10,
|
|
|
|
exp.span,
|
2021-02-12 09:53:52 +00:00
|
|
|
"this call to `from_str_radix` can be replaced with a call to `str::parse`",
|
2021-02-11 00:30:37 +00:00
|
|
|
"try",
|
2021-02-11 10:30:23 +00:00
|
|
|
format!("({}).parse()", orig_string),
|
2021-02-11 10:42:20 +00:00
|
|
|
Applicability::MaybeIncorrect
|
2021-02-11 00:30:37 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|