rust-clippy/clippy_lints/src/map_unit_fn.rs

267 lines
9.7 KiB
Rust
Raw Normal View History

use clippy_utils::diagnostics::span_lint_and_then;
use clippy_utils::source::{snippet, snippet_with_applicability, snippet_with_context};
use clippy_utils::ty::is_type_diagnostic_item;
use clippy_utils::{iter_input_pats, method_chain_args};
use rustc_errors::Applicability;
2020-01-06 16:39:50 +00:00
use rustc_hir as hir;
2020-01-12 06:08:41 +00:00
use rustc_lint::{LateContext, LateLintPass};
use rustc_middle::ty::{self, Ty};
use rustc_session::declare_lint_pass;
use rustc_span::{sym, Span};
declare_clippy_lint! {
/// ### 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
/// an if let statement
///
/// ### Example
/// ```no_run
/// # fn do_stuff() -> Option<String> { Some(String::new()) }
/// # fn log_err_msg(foo: String) -> Option<String> { Some(foo) }
/// # fn format_msg(foo: String) -> String { String::new() }
/// let x: Option<String> = do_stuff();
/// x.map(log_err_msg);
/// # let x: Option<String> = do_stuff();
/// x.map(|msg| log_err_msg(format_msg(msg)));
/// ```
///
/// The correct use would be:
///
/// ```no_run
/// # fn do_stuff() -> Option<String> { Some(String::new()) }
/// # fn log_err_msg(foo: String) -> Option<String> { Some(foo) }
/// # fn format_msg(foo: String) -> String { String::new() }
/// let x: Option<String> = do_stuff();
/// if let Some(msg) = x {
/// log_err_msg(msg);
/// }
///
/// # let x: Option<String> = do_stuff();
/// if let Some(msg) = x {
/// log_err_msg(format_msg(msg));
/// }
/// ```
#[clippy::version = "pre 1.29.0"]
pub OPTION_MAP_UNIT_FN,
complexity,
2020-01-06 06:30:43 +00:00
"using `option.map(f)`, where `f` is a function or closure that returns `()`"
}
2018-04-15 11:00:12 +00:00
declare_clippy_lint! {
/// ### What it does
/// Checks for usage of `result.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
/// an if let statement
///
/// ### Example
/// ```no_run
/// # fn do_stuff() -> Result<String, String> { Ok(String::new()) }
/// # fn log_err_msg(foo: String) -> Result<String, String> { Ok(foo) }
/// # fn format_msg(foo: String) -> String { String::new() }
/// let x: Result<String, String> = do_stuff();
/// x.map(log_err_msg);
/// # let x: Result<String, String> = do_stuff();
/// x.map(|msg| log_err_msg(format_msg(msg)));
/// ```
///
/// The correct use would be:
///
/// ```no_run
/// # fn do_stuff() -> Result<String, String> { Ok(String::new()) }
/// # fn log_err_msg(foo: String) -> Result<String, String> { Ok(foo) }
/// # fn format_msg(foo: String) -> String { String::new() }
/// let x: Result<String, String> = do_stuff();
/// if let Ok(msg) = x {
/// log_err_msg(msg);
/// };
/// # let x: Result<String, String> = do_stuff();
/// if let Ok(msg) = x {
/// log_err_msg(format_msg(msg));
/// };
/// ```
#[clippy::version = "pre 1.29.0"]
2018-04-15 11:00:12 +00:00
pub RESULT_MAP_UNIT_FN,
complexity,
2020-01-06 06:30:43 +00:00
"using `result.map(f)`, where `f` is a function or closure that returns `()`"
2018-04-15 11:00:12 +00:00
}
2019-04-08 20:43:55 +00:00
declare_lint_pass!(MapUnit => [OPTION_MAP_UNIT_FN, RESULT_MAP_UNIT_FN]);
2019-03-18 11:43:10 +00:00
fn is_unit_type(ty: Ty<'_>) -> bool {
ty.is_unit() || ty.is_never()
2017-01-22 18:36:50 +00:00
}
fn is_unit_function(cx: &LateContext<'_>, expr: &hir::Expr<'_>) -> bool {
2020-07-17 08:47:04 +00:00
let ty = cx.typeck_results().expr_ty(expr);
if let ty::FnDef(id, _) = *ty.kind() {
if let Some(fn_type) = cx.tcx.fn_sig(id).instantiate_identity().no_bound_vars() {
return is_unit_type(fn_type.output());
}
}
false
}
fn is_unit_expression(cx: &LateContext<'_>, expr: &hir::Expr<'_>) -> bool {
2020-07-17 08:47:04 +00:00
is_unit_type(cx.typeck_results().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
fn reduce_unit_expression(cx: &LateContext<'_>, expr: &hir::Expr<'_>) -> Option<Span> {
if !is_unit_expression(cx, expr) {
2017-01-22 18:36:50 +00:00
return None;
}
2019-09-27 15:16:06 +00:00
match expr.kind {
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
},
hir::ExprKind::Block(block, _) => {
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
},
([inner_stmt], None) => {
// If block only contains statements,
// reduce `{ X; }` to `X` or `X;`
2019-09-27 15:16:06 +00:00
match inner_stmt.kind {
hir::StmtKind::Let(local) => Some(local.span),
hir::StmtKind::Expr(e) => Some(e.span),
hir::StmtKind::Semi(..) => Some(inner_stmt.span),
hir::StmtKind::Item(..) => None,
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<'tcx>(
cx: &LateContext<'tcx>,
expr: &hir::Expr<'_>,
) -> Option<(&'tcx hir::Param<'tcx>, &'tcx hir::Expr<'tcx>)> {
if let hir::ExprKind::Closure(&hir::Closure { fn_decl, body, .. }) = expr.kind
&& let body = cx.tcx.hir().body(body)
&& let body_expr = &body.value
&& fn_decl.inputs.len() == 1
&& is_unit_expression(cx, body_expr)
&& let Some(binding) = iter_input_pats(fn_decl, body).next()
{
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`
///
2020-03-08 22:43:40 +00:00
/// Anything else will return `a`.
fn let_binding_name(cx: &LateContext<'_>, var_arg: &hir::Expr<'_>) -> String {
2019-09-27 15:16:06 +00:00
match &var_arg.kind {
hir::ExprKind::Field(_, _) => snippet(cx, var_arg.span, "_").replace('.', "_"),
2018-07-12 07:30:57 +00:00
hir::ExprKind::Path(_) => format!("_{}", snippet(cx, var_arg.span, "")),
2020-03-08 22:43:40 +00:00
_ => "a".to_string(),
}
}
#[must_use]
2018-04-15 11:00:12 +00:00
fn suggestion_msg(function_type: &str, map_type: &str) -> String {
format!("called `map(f)` on an `{map_type}` value where `f` is a {function_type} that returns the unit type `()`")
2018-04-15 11:00:12 +00:00
}
fn lint_map_unit_fn(
cx: &LateContext<'_>,
stmt: &hir::Stmt<'_>,
expr: &hir::Expr<'_>,
map_args: (&hir::Expr<'_>, &[hir::Expr<'_>]),
) {
let var_arg = &map_args.0;
let (map_type, variant, lint) = if is_type_diagnostic_item(cx, cx.typeck_results().expr_ty(var_arg), sym::Option) {
("Option", "Some", OPTION_MAP_UNIT_FN)
} else if is_type_diagnostic_item(cx, cx.typeck_results().expr_ty(var_arg), sym::Result) {
("Result", "Ok", RESULT_MAP_UNIT_FN)
} else {
return;
};
let fn_arg = &map_args.1[0];
if is_unit_function(cx, fn_arg) {
let mut applicability = Applicability::MachineApplicable;
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!(
2019-09-25 15:49:23 +00:00
"if let {0}({binding}) = {1} {{ {2}({binding}) }}",
2018-11-27 20:14:15 +00:00
variant,
snippet_with_applicability(cx, var_arg.span, "_", &mut applicability),
snippet_with_applicability(cx, fn_arg.span, "_", &mut applicability),
2019-09-25 15:49:23 +00:00
binding = let_binding_name(cx, var_arg)
2018-11-27 20:14:15 +00:00
);
2024-03-23 05:52:11 +00:00
span_lint_and_then(cx, lint, expr.span, msg, |diag| {
diag.span_suggestion(stmt.span, "try", suggestion, applicability);
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);
2024-03-23 05:52:11 +00:00
span_lint_and_then(cx, lint, expr.span, msg, |diag| {
2018-04-15 13:37:11 +00:00
if let Some(reduced_expr_span) = reduce_unit_expression(cx, closure_expr) {
let mut applicability = Applicability::MachineApplicable;
2018-11-27 20:14:15 +00:00
let suggestion = format!(
"if let {0}({1}) = {2} {{ {3} }}",
variant,
snippet_with_applicability(cx, binding.pat.span, "_", &mut applicability),
snippet_with_applicability(cx, var_arg.span, "_", &mut applicability),
snippet_with_context(cx, reduced_expr_span, var_arg.span.ctxt(), "_", &mut applicability).0,
2018-09-18 15:07:54 +00:00
);
diag.span_suggestion(stmt.span, "try", suggestion, applicability);
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, "_"),
2019-09-25 15:49:23 +00:00
snippet(cx, var_arg.span, "_"),
2018-09-18 15:07:54 +00:00
);
diag.span_suggestion(stmt.span, "try", suggestion, Applicability::HasPlaceholders);
2018-04-15 13:37:11 +00:00
}
});
2017-01-22 18:36:50 +00:00
}
}
impl<'tcx> LateLintPass<'tcx> for MapUnit {
fn check_stmt(&mut self, cx: &LateContext<'_>, stmt: &hir::Stmt<'_>) {
2019-08-19 16:30:32 +00:00
if stmt.span.from_expansion() {
return;
}
if let hir::StmtKind::Semi(expr) = stmt.kind {
2019-05-17 21:53:54 +00:00
if let Some(arglists) = method_chain_args(expr, &["map"]) {
lint_map_unit_fn(cx, stmt, expr, arglists[0]);
}
}
}
}