2017-01-16 20:40:50 +00:00
|
|
|
use rustc::hir;
|
|
|
|
use rustc::lint::*;
|
|
|
|
use rustc::ty;
|
2017-01-22 21:42:57 +00:00
|
|
|
use syntax::codemap::Span;
|
2017-01-22 18:36:50 +00:00
|
|
|
use utils::{in_macro, iter_input_pats, match_type, method_chain_args, snippet, span_lint_and_then};
|
2017-01-16 20:40:50 +00:00
|
|
|
use utils::paths;
|
|
|
|
|
|
|
|
#[derive(Clone)]
|
|
|
|
pub struct Pass;
|
|
|
|
|
2018-04-09 06:19:40 +00:00
|
|
|
/// **What it does:** Checks for usage of `Option.map(f)` where f is a function
|
|
|
|
/// or closure that returns the unit type.
|
2017-01-16 20:40:50 +00:00
|
|
|
///
|
|
|
|
/// **Why is this bad?** Readability, this can be written more clearly with
|
|
|
|
/// an if statement
|
|
|
|
///
|
2017-01-23 01:57:17 +00:00
|
|
|
/// **Known problems:** None.
|
2017-01-16 20:40:50 +00:00
|
|
|
///
|
|
|
|
/// **Example:**
|
2018-04-09 06:19:40 +00:00
|
|
|
///
|
2017-01-16 20:40:50 +00:00
|
|
|
/// ```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)))
|
2017-01-16 20:40:50 +00:00
|
|
|
/// ```
|
2018-04-09 06:19:40 +00:00
|
|
|
///
|
2017-01-16 20:40:50 +00:00
|
|
|
/// The correct use would be:
|
2018-04-09 06:19:40 +00:00
|
|
|
///
|
2017-01-16 20:40:50 +00:00
|
|
|
/// ```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))
|
|
|
|
/// }
|
2017-01-16 20:40:50 +00:00
|
|
|
/// ```
|
2018-04-09 05:54:08 +00:00
|
|
|
declare_clippy_lint! {
|
2018-04-09 06:19:40 +00:00
|
|
|
pub OPTION_MAP_UNIT_FN,
|
2018-04-09 05:54:08 +00:00
|
|
|
complexity,
|
2018-04-09 06:19:40 +00:00
|
|
|
"using `Option.map(f)`, where f is a function or closure that returns ()"
|
2017-01-16 20:40:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
impl LintPass for Pass {
|
|
|
|
fn get_lints(&self) -> LintArray {
|
2018-04-09 06:19:40 +00:00
|
|
|
lint_array!(OPTION_MAP_UNIT_FN)
|
2017-01-16 20:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-09 06:19:40 +00:00
|
|
|
fn is_unit_type(ty: ty::Ty) -> bool {
|
2017-01-22 18:36:50 +00:00
|
|
|
match ty.sty {
|
|
|
|
ty::TyTuple(slice) => slice.is_empty(),
|
|
|
|
ty::TyNever => true,
|
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-09 06:19:40 +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);
|
|
|
|
|
2018-04-08 07:48:49 +00:00
|
|
|
if let ty::TyFnDef(id, _) = ty.sty {
|
|
|
|
if let Some(fn_type) = cx.tcx.fn_sig(id).no_late_bound_regions() {
|
2018-04-09 06:19:40 +00:00
|
|
|
return is_unit_type(fn_type.output());
|
2017-01-16 20:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
false
|
|
|
|
}
|
|
|
|
|
2018-04-09 06:19:40 +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
|
|
|
}
|
|
|
|
|
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
|
|
|
|
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 {
|
|
|
|
hir::ExprCall(_, _) |
|
|
|
|
hir::ExprMethodCall(_, _, _) => {
|
|
|
|
// 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::ExprBlock(ref block) => {
|
|
|
|
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;`
|
2017-01-22 18:36:50 +00:00
|
|
|
match inner_stmt.node {
|
2017-01-22 21:42:57 +00:00
|
|
|
hir::StmtDecl(ref d, _) => Some(d.span),
|
|
|
|
hir::StmtExpr(ref e, _) => Some(e.span),
|
2018-04-10 20:13:58 +00:00
|
|
|
hir::StmtSemi(_, _) => Some(inner_stmt.span),
|
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
|
|
|
|
}
|
2017-01-22 18:36:50 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-09 06:19:40 +00:00
|
|
|
fn unit_closure<'a, 'tcx>(cx: &LateContext<'a, 'tcx>, expr: &'a hir::Expr) -> Option<(&'tcx hir::Arg, &'a hir::Expr)> {
|
2018-04-08 07:48:49 +00:00
|
|
|
if let hir::ExprClosure(_, ref decl, inner_expr_id, _, _) = expr.node {
|
|
|
|
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-04-15 09:37:35 +00:00
|
|
|
/// Builds a name for the let binding variable (var_arg)
|
|
|
|
///
|
|
|
|
/// `x.field` => `x_field`
|
|
|
|
/// `y` => `_y`
|
|
|
|
///
|
|
|
|
/// Anything else will return `_`.
|
|
|
|
fn let_binding_name(cx: &LateContext, var_arg: &hir::Expr) -> String {
|
|
|
|
match &var_arg.node {
|
|
|
|
hir::ExprField(_, _) => snippet(cx, var_arg.span, "_").replace(".", "_"),
|
|
|
|
hir::ExprPath(_) => format!("_{}", snippet(cx, var_arg.span, "")),
|
|
|
|
_ => "_".to_string()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-09 06:19:40 +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];
|
|
|
|
let fn_arg = &map_args[1];
|
|
|
|
|
|
|
|
if !match_type(cx, cx.tables.expr_ty(var_arg), &paths::OPTION) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-04-09 06:19:40 +00:00
|
|
|
if is_unit_function(cx, fn_arg) {
|
|
|
|
let msg = "called `map(f)` on an Option value where `f` is a unit function";
|
2018-04-15 09:37:35 +00:00
|
|
|
let suggestion = format!("if let Some({0}) = {1} {{ {2}(...) }}",
|
|
|
|
let_binding_name(cx, var_arg),
|
2017-01-22 18:36:50 +00:00
|
|
|
snippet(cx, var_arg.span, "_"),
|
|
|
|
snippet(cx, fn_arg.span, "_"));
|
2017-01-16 20:40:50 +00:00
|
|
|
|
2017-01-22 18:36:50 +00:00
|
|
|
span_lint_and_then(cx,
|
2018-04-09 06:19:40 +00:00
|
|
|
OPTION_MAP_UNIT_FN,
|
2017-01-22 18:36:50 +00:00
|
|
|
expr.span,
|
|
|
|
msg,
|
2018-04-15 09:35:20 +00:00
|
|
|
|db| { db.span_approximate_suggestion(stmt.span, "try this", suggestion); });
|
2018-04-09 06:19:40 +00:00
|
|
|
} else if let Some((binding, closure_expr)) = unit_closure(cx, fn_arg) {
|
|
|
|
let msg = "called `map(f)` on an Option value where `f` is a unit closure";
|
2018-04-15 09:35:20 +00:00
|
|
|
|
|
|
|
enum Suggestion {
|
|
|
|
Full(String),
|
|
|
|
Approx(String)
|
|
|
|
}
|
|
|
|
|
2018-04-09 06:19:40 +00:00
|
|
|
let suggestion = if let Some(expr_span) = reduce_unit_expression(cx, closure_expr) {
|
2018-04-15 09:35:20 +00:00
|
|
|
Suggestion::Full(
|
|
|
|
format!("if let Some({0}) = {1} {{ {2} }}",
|
|
|
|
snippet(cx, binding.pat.span, "_"),
|
|
|
|
snippet(cx, var_arg.span, "_"),
|
|
|
|
snippet(cx, expr_span, "_"))
|
|
|
|
)
|
2017-01-23 01:57:17 +00:00
|
|
|
} else {
|
2018-04-15 09:35:20 +00:00
|
|
|
Suggestion::Approx(
|
|
|
|
format!("if let Some({0}) = {1} {{ ... }}",
|
|
|
|
snippet(cx, binding.pat.span, "_"),
|
|
|
|
snippet(cx, var_arg.span, "_"))
|
|
|
|
)
|
2017-01-23 01:57:17 +00:00
|
|
|
};
|
2017-01-22 18:36:50 +00:00
|
|
|
|
2018-04-15 09:35:20 +00:00
|
|
|
span_lint_and_then(cx, OPTION_MAP_UNIT_FN, expr.span, msg, |db| {
|
|
|
|
match suggestion {
|
|
|
|
Suggestion::Full(sugg) => db.span_suggestion(stmt.span, "try this", sugg),
|
|
|
|
Suggestion::Approx(sugg) => db.span_approximate_suggestion(stmt.span, "try this", sugg),
|
|
|
|
};
|
|
|
|
});
|
2017-01-22 18:36:50 +00:00
|
|
|
}
|
2017-01-16 20:40:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
|
|
|
|
fn check_stmt(&mut self, cx: &LateContext, stmt: &hir::Stmt) {
|
2018-04-08 07:48:49 +00:00
|
|
|
if in_macro(stmt.span) {
|
2017-01-16 20:40:50 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if let hir::StmtSemi(ref expr, _) = stmt.node {
|
|
|
|
if let hir::ExprMethodCall(_, _, _) = expr.node {
|
|
|
|
if let Some(arglists) = method_chain_args(expr, &["map"]) {
|
2018-04-09 06:19:40 +00:00
|
|
|
lint_map_unit_fn(cx, stmt, expr, arglists[0]);
|
2017-01-16 20:40:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|