2018-05-30 08:15:50 +00:00
|
|
|
use crate::utils::paths;
|
2019-08-19 16:30:32 +00:00
|
|
|
use crate::utils::{iter_input_pats, match_type, method_chain_args, snippet, span_lint_and_then};
|
2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2019-12-03 23:16:03 +00:00
|
|
|
use rustc::declare_lint_pass;
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc::hir;
|
|
|
|
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
|
2019-03-18 11:43:10 +00:00
|
|
|
use rustc::ty::{self, Ty};
|
2018-12-29 15:04:45 +00:00
|
|
|
use rustc_errors::Applicability;
|
2019-12-03 23:16:03 +00:00
|
|
|
use rustc_session::declare_tool_lint;
|
2018-12-29 15:04:45 +00:00
|
|
|
use syntax::source_map::Span;
|
2017-01-16 20:40:50 +00:00
|
|
|
|
2018-04-09 05:54:08 +00:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +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
|
|
|
|
/// an if let statement
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
|
|
|
/// ```rust
|
2019-08-02 06:13:54 +00:00
|
|
|
/// # 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();
|
2019-03-05 16:50:33 +00:00
|
|
|
/// x.map(log_err_msg);
|
2019-08-02 06:13:54 +00:00
|
|
|
/// # let x: Option<String> = do_stuff();
|
|
|
|
/// x.map(|msg| log_err_msg(format_msg(msg)));
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// The correct use would be:
|
|
|
|
///
|
|
|
|
/// ```rust
|
2019-08-02 06:13:54 +00:00
|
|
|
/// # 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();
|
2019-03-05 16:50:33 +00:00
|
|
|
/// if let Some(msg) = x {
|
2019-08-02 06:13:54 +00:00
|
|
|
/// log_err_msg(msg);
|
2019-03-05 16:50:33 +00:00
|
|
|
/// }
|
2019-08-02 06:13:54 +00:00
|
|
|
///
|
|
|
|
/// # let x: Option<String> = do_stuff();
|
2019-03-05 16:50:33 +00:00
|
|
|
/// if let Some(msg) = x {
|
2019-08-02 06:13:54 +00:00
|
|
|
/// log_err_msg(format_msg(msg));
|
2019-03-05 16:50:33 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
2018-04-09 06:19:40 +00:00
|
|
|
pub OPTION_MAP_UNIT_FN,
|
2018-04-09 05:54:08 +00:00
|
|
|
complexity,
|
2018-04-15 13:37:11 +00:00
|
|
|
"using `option.map(f)`, where f is a function or closure that returns ()"
|
2017-01-16 20:40:50 +00:00
|
|
|
}
|
|
|
|
|
2018-04-15 11:00:12 +00:00
|
|
|
declare_clippy_lint! {
|
2019-03-05 16:50:33 +00:00
|
|
|
/// **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
|
|
|
|
///
|
|
|
|
/// **Known problems:** None.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
|
|
|
/// ```rust
|
2019-08-02 06:13:54 +00:00
|
|
|
/// # 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();
|
2019-03-05 16:50:33 +00:00
|
|
|
/// x.map(log_err_msg);
|
2019-08-02 06:13:54 +00:00
|
|
|
/// # let x: Result<String, String> = do_stuff();
|
|
|
|
/// x.map(|msg| log_err_msg(format_msg(msg)));
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// The correct use would be:
|
|
|
|
///
|
|
|
|
/// ```rust
|
2019-08-02 06:13:54 +00:00
|
|
|
/// # 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();
|
2019-03-05 16:50:33 +00:00
|
|
|
/// if let Ok(msg) = x {
|
2019-08-02 06:13:54 +00:00
|
|
|
/// log_err_msg(msg);
|
|
|
|
/// };
|
|
|
|
/// # let x: Result<String, String> = do_stuff();
|
2019-03-05 16:50:33 +00:00
|
|
|
/// if let Ok(msg) = x {
|
2019-08-02 06:13:54 +00:00
|
|
|
/// log_err_msg(format_msg(msg));
|
|
|
|
/// };
|
2019-03-05 16:50:33 +00:00
|
|
|
/// ```
|
2018-04-15 11:00:12 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(MapUnit => [OPTION_MAP_UNIT_FN, RESULT_MAP_UNIT_FN]);
|
2017-01-16 20:40:50 +00:00
|
|
|
|
2019-03-18 11:43:10 +00:00
|
|
|
fn is_unit_type(ty: Ty<'_>) -> bool {
|
2019-09-26 09:03:36 +00:00
|
|
|
match ty.kind {
|
2018-08-22 21:34:52 +00:00
|
|
|
ty::Tuple(slice) => slice.is_empty(),
|
|
|
|
ty::Never => true,
|
2017-01-22 18:36:50 +00:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-27 07:12:26 +00:00
|
|
|
fn is_unit_function(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>) -> bool {
|
2017-01-16 20:40:50 +00:00
|
|
|
let ty = cx.tables.expr_ty(expr);
|
|
|
|
|
2019-09-26 09:03:36 +00:00
|
|
|
if let ty::FnDef(id, _) = ty.kind {
|
2018-11-03 17:50:23 +00:00
|
|
|
if let Some(fn_type) = cx.tcx.fn_sig(id).no_bound_vars() {
|
2018-04-09 06:19:40 +00:00
|
|
|
return is_unit_type(fn_type.output());
|
2017-01-16 20:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
2019-12-27 07:12:26 +00:00
|
|
|
fn is_unit_expression(cx: &LateContext<'_, '_>, expr: &hir::Expr<'_>) -> bool {
|
2018-04-09 06:19:40 +00:00
|
|
|
is_unit_type(cx.tables.expr_ty(expr))
|
2017-01-22 18:36:50 +00:00
|
|
|
}
|
|
|
|
|
2018-04-09 06:19:40 +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
|
2019-12-27 07:12:26 +00:00
|
|
|
fn reduce_unit_expression<'a>(cx: &LateContext<'_, '_>, expr: &'a hir::Expr<'_>) -> Option<Span> {
|
2018-04-09 06:19:40 +00:00
|
|
|
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 {
|
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)) => {
|
2018-04-15 09:35:20 +00:00
|
|
|
// If block only contains an expression,
|
|
|
|
// reduce `{ X }` to `X`
|
2018-04-09 06:19:40 +00:00
|
|
|
reduce_unit_expression(cx, inner_expr)
|
2017-01-22 18:36:50 +00:00
|
|
|
},
|
|
|
|
(&[ref inner_stmt], None) => {
|
2018-04-15 09:35:20 +00:00
|
|
|
// If block only contains statements,
|
|
|
|
// reduce `{ X; }` to `X` or `X;`
|
2019-09-27 15:16:06 +00:00
|
|
|
match inner_stmt.kind {
|
2019-01-20 10:21:30 +00:00
|
|
|
hir::StmtKind::Local(ref local) => Some(local.span),
|
|
|
|
hir::StmtKind::Expr(ref e) => Some(e.span),
|
|
|
|
hir::StmtKind::Semi(..) => Some(inner_stmt.span),
|
|
|
|
hir::StmtKind::Item(..) => None,
|
2017-01-22 18:36:50 +00:00
|
|
|
}
|
|
|
|
},
|
2018-04-15 09:35:20 +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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-28 09:27:06 +00:00
|
|
|
fn unit_closure<'a, 'tcx>(
|
|
|
|
cx: &LateContext<'a, 'tcx>,
|
2019-12-27 07:12:26 +00:00
|
|
|
expr: &'a hir::Expr<'a>,
|
|
|
|
) -> Option<(&'tcx hir::Param<'tcx>, &'a hir::Expr<'a>)> {
|
2019-09-27 15:16:06 +00:00
|
|
|
if let hir::ExprKind::Closure(_, ref decl, inner_expr_id, _, _) = expr.kind {
|
2018-12-08 00:56:03 +00:00
|
|
|
let body = cx.tcx.hir().body(inner_expr_id);
|
2017-01-23 01:57:17 +00:00
|
|
|
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;
|
2018-04-09 06:19:40 +00:00
|
|
|
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`)
|
2018-04-15 09:37:35 +00:00
|
|
|
///
|
|
|
|
/// `x.field` => `x_field`
|
|
|
|
/// `y` => `_y`
|
|
|
|
///
|
|
|
|
/// Anything else will return `_`.
|
2019-12-27 07:12:26 +00:00
|
|
|
fn let_binding_name(cx: &LateContext<'_, '_>, var_arg: &hir::Expr<'_>) -> String {
|
2019-09-27 15:16:06 +00:00
|
|
|
match &var_arg.kind {
|
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 09:37:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-18 06:37:41 +00:00
|
|
|
#[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 {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
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2019-12-27 07:12:26 +00:00
|
|
|
fn lint_map_unit_fn(cx: &LateContext<'_, '_>, stmt: &hir::Stmt<'_>, expr: &hir::Expr<'_>, map_args: &[hir::Expr<'_>]) {
|
2017-01-16 20:40:50 +00:00
|
|
|
let var_arg = &map_args[0];
|
|
|
|
|
2019-05-17 21:53:54 +00:00
|
|
|
let (map_type, variant, lint) = if match_type(cx, cx.tables.expr_ty(var_arg), &paths::OPTION) {
|
2018-11-27 20:14:15 +00:00
|
|
|
("Option", "Some", OPTION_MAP_UNIT_FN)
|
2019-05-17 21:53:54 +00:00
|
|
|
} else if match_type(cx, cx.tables.expr_ty(var_arg), &paths::RESULT) {
|
2018-11-27 20:14:15 +00:00
|
|
|
("Result", "Ok", RESULT_MAP_UNIT_FN)
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
};
|
2018-12-22 05:58:07 +00:00
|
|
|
let fn_arg = &map_args[1];
|
2017-01-16 20:40:50 +00:00
|
|
|
|
2018-04-09 06:19:40 +00:00
|
|
|
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!(
|
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(cx, var_arg.span, "_"),
|
2019-09-25 15:49:23 +00:00
|
|
|
snippet(cx, fn_arg.span, "_"),
|
|
|
|
binding = let_binding_name(cx, var_arg)
|
2018-11-27 20:14:15 +00:00
|
|
|
);
|
2017-01-16 20:40:50 +00:00
|
|
|
|
2018-04-15 11:00:12 +00:00
|
|
|
span_lint_and_then(cx, lint, expr.span, &msg, |db| {
|
2019-09-25 15:49:23 +00:00
|
|
|
db.span_suggestion(stmt.span, "try this", suggestion, Applicability::MachineApplicable);
|
2018-04-15 11:00:12 +00:00
|
|
|
});
|
2018-04-09 06:19:40 +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 09:35:20 +00:00
|
|
|
|
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, "_")
|
|
|
|
);
|
2019-01-27 12:33:56 +00:00
|
|
|
db.span_suggestion(
|
2018-09-18 15:07:54 +00:00
|
|
|
stmt.span,
|
|
|
|
"try this",
|
|
|
|
suggestion,
|
2018-09-18 17:01:17 +00:00
|
|
|
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, "_"),
|
2019-09-25 15:49:23 +00:00
|
|
|
snippet(cx, var_arg.span, "_"),
|
2018-09-18 15:07:54 +00:00
|
|
|
);
|
2019-09-25 15:49:23 +00:00
|
|
|
db.span_suggestion(stmt.span, "try this", suggestion, Applicability::HasPlaceholders);
|
2018-04-15 13:37:11 +00:00
|
|
|
}
|
2018-04-15 09:35:20 +00:00
|
|
|
});
|
2017-01-22 18:36:50 +00:00
|
|
|
}
|
2017-01-16 20:40:50 +00:00
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MapUnit {
|
2019-12-27 07:12:26 +00:00
|
|
|
fn check_stmt(&mut self, cx: &LateContext<'_, '_>, stmt: &hir::Stmt<'_>) {
|
2019-08-19 16:30:32 +00:00
|
|
|
if stmt.span.from_expansion() {
|
2017-01-16 20:40:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-09-27 15:16:06 +00:00
|
|
|
if let hir::StmtKind::Semi(ref expr) = stmt.kind {
|
2019-05-17 21:53:54 +00:00
|
|
|
if let Some(arglists) = method_chain_args(expr, &["map"]) {
|
2018-09-16 11:07:40 +00:00
|
|
|
lint_map_unit_fn(cx, stmt, expr, arglists[0]);
|
2017-01-16 20:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|