rust-clippy/clippy_lints/src/map_unit_fn.rs

269 lines
8.8 KiB
Rust
Raw Normal View History

2018-10-06 16:18:06 +00:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
use crate::rustc::hir;
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use crate::rustc::ty;
2018-11-27 20:14:15 +00:00
use crate::rustc::{declare_tool_lint, lint_array};
use crate::rustc_errors::Applicability;
use crate::syntax::source_map::Span;
2018-05-30 08:15:50 +00:00
use crate::utils::paths;
2018-11-27 20:14:15 +00:00
use crate::utils::{in_macro, iter_input_pats, match_type, method_chain_args, snippet, span_lint_and_then};
use if_chain::if_chain;
#[derive(Clone)]
pub struct Pass;
2018-04-15 13:37:11 +00:00
/// **What it does:** Checks for usage of `option.map(f)` where f is a function
/// or closure that returns the unit type.
///
/// **Why is this bad?** Readability, this can be written more clearly with
2018-04-15 13:37:11 +00:00
/// an if let statement
///
/// **Known problems:** None.
///
/// **Example:**
///
/// ```rust
/// let x: Option<&str> = do_stuff();
/// x.map(log_err_msg);
2017-01-22 18:36:50 +00:00
/// x.map(|msg| log_err_msg(format_msg(msg)))
/// ```
///
/// The correct use would be:
///
/// ```rust
/// let x: Option<&str> = do_stuff();
/// if let Some(msg) = x {
/// log_err_msg(msg)
/// }
2017-01-22 18:36:50 +00:00
/// if let Some(msg) = x {
/// log_err_msg(format_msg(msg))
/// }
/// ```
declare_clippy_lint! {
pub OPTION_MAP_UNIT_FN,
complexity,
2018-04-15 13:37:11 +00:00
"using `option.map(f)`, where f is a function or closure that returns ()"
}
2018-04-15 13:37:11 +00:00
/// **What it does:** Checks for usage of `result.map(f)` where f is a function
2018-04-15 11:00:12 +00:00
/// or closure that returns the unit type.
///
/// **Why is this bad?** Readability, this can be written more clearly with
2018-04-15 13:37:11 +00:00
/// an if let statement
2018-04-15 11:00:12 +00:00
///
/// **Known problems:** None.
///
/// **Example:**
///
/// ```rust
/// let x: Result<&str, &str> = do_stuff();
/// x.map(log_err_msg);
/// x.map(|msg| log_err_msg(format_msg(msg)))
/// ```
///
/// The correct use would be:
///
/// ```rust
/// let x: Result<&str, &str> = do_stuff();
/// if let Ok(msg) = x {
/// log_err_msg(msg)
/// }
/// if let Ok(msg) = x {
/// log_err_msg(format_msg(msg))
/// }
/// ```
declare_clippy_lint! {
pub RESULT_MAP_UNIT_FN,
complexity,
2018-04-15 13:37:11 +00:00
"using `result.map(f)`, where f is a function or closure that returns ()"
2018-04-15 11:00:12 +00:00
}
impl LintPass for Pass {
fn get_lints(&self) -> LintArray {
2018-04-15 11:00:12 +00:00
lint_array!(OPTION_MAP_UNIT_FN, RESULT_MAP_UNIT_FN)
}
}
2018-07-23 11:01:12 +00:00
fn is_unit_type(ty: ty::Ty<'_>) -> bool {
2017-01-22 18:36:50 +00:00
match ty.sty {
ty::Tuple(slice) => slice.is_empty(),
ty::Never => true,
2017-01-22 18:36:50 +00:00
_ => false,
}
}
2018-07-23 11:01:12 +00:00
fn is_unit_function(cx: &LateContext<'_, '_>, expr: &hir::Expr) -> bool {
let ty = cx.tables.expr_ty(expr);
if let ty::FnDef(id, _) = ty.sty {
if let Some(fn_type) = cx.tcx.fn_sig(id).no_bound_vars() {
return is_unit_type(fn_type.output());
}
}
false
}
2018-07-23 11:01:12 +00:00
fn is_unit_expression(cx: &LateContext<'_, '_>, expr: &hir::Expr) -> bool {
is_unit_type(cx.tables.expr_ty(expr))
2017-01-22 18:36:50 +00:00
}
/// The expression inside a closure may or may not have surrounding braces and
/// semicolons, which causes problems when generating a suggestion. Given an
/// expression that evaluates to '()' or '!', recursively remove useless braces
/// and semi-colons until is suitable for including in the suggestion template
2018-07-23 11:01:12 +00:00
fn reduce_unit_expression<'a>(cx: &LateContext<'_, '_>, expr: &'a hir::Expr) -> Option<Span> {
if !is_unit_expression(cx, expr) {
2017-01-22 18:36:50 +00:00
return None;
}
match expr.node {
2018-11-27 20:14:15 +00:00
hir::ExprKind::Call(_, _) | hir::ExprKind::MethodCall(_, _, _) => {
2017-01-22 18:36:50 +00:00
// Calls can't be reduced any more
2017-01-22 21:42:57 +00:00
Some(expr.span)
2017-01-22 18:36:50 +00:00
},
2018-07-12 07:30:57 +00:00
hir::ExprKind::Block(ref block, _) => {
2017-01-22 18:36:50 +00:00
match (&block.stmts[..], block.expr.as_ref()) {
(&[], Some(inner_expr)) => {
// If block only contains an expression,
// reduce `{ X }` to `X`
reduce_unit_expression(cx, inner_expr)
2017-01-22 18:36:50 +00:00
},
(&[ref inner_stmt], None) => {
// If block only contains statements,
// reduce `{ X; }` to `X` or `X;`
2017-01-22 18:36:50 +00:00
match inner_stmt.node {
2018-07-12 08:53:53 +00:00
hir::StmtKind::Decl(ref d, _) => Some(d.span),
hir::StmtKind::Expr(ref e, _) => Some(e.span),
hir::StmtKind::Semi(_, _) => Some(inner_stmt.span),
2017-01-22 18:36:50 +00:00
}
},
_ => {
// For closures that contain multiple statements
// it's difficult to get a correct suggestion span
// for all cases (multi-line closures specifically)
//
// We do not attempt to build a suggestion for those right now.
None
2018-11-27 20:14:15 +00:00
},
2017-01-22 18:36:50 +00:00
}
},
_ => None,
}
}
fn unit_closure<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'a hir::Expr) -> Option<(&'tcx hir::Arg, &'a hir::Expr)> {
2018-07-12 07:30:57 +00:00
if let hir::ExprKind::Closure(_, ref decl, inner_expr_id, _, _) = expr.node {
2018-04-08 07:48:49 +00:00
let body = cx.tcx.hir.body(inner_expr_id);
let body_expr = &body.value;
2017-01-22 18:36:50 +00:00
2018-04-08 07:48:49 +00:00
if_chain! {
if decl.inputs.len() == 1;
if is_unit_expression(cx, body_expr);
2018-04-08 07:48:49 +00:00
if let Some(binding) = iter_input_pats(&decl, body).next();
then {
return Some((binding, body_expr));
}
}
2017-01-22 18:36:50 +00:00
}
None
}
2018-10-11 22:43:13 +00:00
/// Builds a name for the let binding variable (`var_arg`)
///
/// `x.field` => `x_field`
/// `y` => `_y`
///
/// Anything else will return `_`.
2018-07-23 11:01:12 +00:00
fn let_binding_name(cx: &LateContext<'_, '_>, var_arg: &hir::Expr) -> String {
match &var_arg.node {
2018-07-12 07:30:57 +00:00
hir::ExprKind::Field(_, _) => snippet(cx, var_arg.span, "_").replace(".", "_"),
hir::ExprKind::Path(_) => format!("_{}", snippet(cx, var_arg.span, "")),
2018-11-27 20:14:15 +00:00
_ => "_".to_string(),
}
}
2018-04-15 11:00:12 +00:00
fn suggestion_msg(function_type: &str, map_type: &str) -> String {
format!(
"called `map(f)` on an {0} value where `f` is a unit {1}",
2018-11-27 20:14:15 +00:00
map_type, function_type
2018-04-15 11:00:12 +00:00
)
}
2018-07-23 11:01:12 +00:00
fn lint_map_unit_fn(cx: &LateContext<'_, '_>, stmt: &hir::Stmt, expr: &hir::Expr, map_args: &[hir::Expr]) {
let var_arg = &map_args[0];
let fn_arg = &map_args[1];
2018-11-27 20:14:15 +00:00
let (map_type, variant, lint) = if match_type(cx, cx.tables.expr_ty(var_arg), &paths::OPTION) {
("Option", "Some", OPTION_MAP_UNIT_FN)
} else if match_type(cx, cx.tables.expr_ty(var_arg), &paths::RESULT) {
("Result", "Ok", RESULT_MAP_UNIT_FN)
} else {
return;
};
if is_unit_function(cx, fn_arg) {
2018-04-15 11:00:12 +00:00
let msg = suggestion_msg("function", map_type);
2018-11-27 20:14:15 +00:00
let suggestion = format!(
"if let {0}({1}) = {2} {{ {3}(...) }}",
variant,
let_binding_name(cx, var_arg),
snippet(cx, var_arg.span, "_"),
snippet(cx, fn_arg.span, "_")
);
2018-04-15 11:00:12 +00:00
span_lint_and_then(cx, lint, expr.span, &msg, |db| {
2018-11-27 20:14:15 +00:00
db.span_suggestion_with_applicability(stmt.span, "try this", suggestion, Applicability::Unspecified);
2018-04-15 11:00:12 +00:00
});
} else if let Some((binding, closure_expr)) = unit_closure(cx, fn_arg) {
2018-04-15 11:00:12 +00:00
let msg = suggestion_msg("closure", map_type);
2018-04-15 11:00:12 +00:00
span_lint_and_then(cx, lint, expr.span, &msg, |db| {
2018-04-15 13:37:11 +00:00
if let Some(reduced_expr_span) = reduce_unit_expression(cx, closure_expr) {
2018-11-27 20:14:15 +00:00
let suggestion = format!(
"if let {0}({1}) = {2} {{ {3} }}",
variant,
snippet(cx, binding.pat.span, "_"),
snippet(cx, var_arg.span, "_"),
snippet(cx, reduced_expr_span, "_")
);
db.span_suggestion_with_applicability(
2018-09-18 15:07:54 +00:00
stmt.span,
"try this",
suggestion,
Applicability::MachineApplicable, // snippet
2018-09-18 15:07:54 +00:00
);
2018-04-15 13:37:11 +00:00
} else {
2018-11-27 20:14:15 +00:00
let suggestion = format!(
"if let {0}({1}) = {2} {{ ... }}",
variant,
snippet(cx, binding.pat.span, "_"),
snippet(cx, var_arg.span, "_")
2018-09-18 15:07:54 +00:00
);
2018-11-27 20:14:15 +00:00
db.span_suggestion_with_applicability(stmt.span, "try this", suggestion, Applicability::Unspecified);
2018-04-15 13:37:11 +00:00
}
});
2017-01-22 18:36:50 +00:00
}
}
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
2018-07-23 11:01:12 +00:00
fn check_stmt(&mut self, cx: &LateContext<'_, '_>, stmt: &hir::Stmt) {
2018-04-08 07:48:49 +00:00
if in_macro(stmt.span) {
return;
}
2018-07-12 08:53:53 +00:00
if let hir::StmtKind::Semi(ref expr, _) = stmt.node {
if let Some(arglists) = method_chain_args(expr, &["map"]) {
lint_map_unit_fn(cx, stmt, expr, arglists[0]);
}
}
}
}