2018-11-27 20:14:15 +00:00
|
|
|
use if_chain::if_chain;
|
2019-01-31 01:15:29 +00:00
|
|
|
use rustc_errors::Applicability;
|
2020-01-06 16:39:50 +00:00
|
|
|
use rustc_hir::def::{DefKind, Res};
|
2020-03-04 07:59:16 +00:00
|
|
|
use rustc_hir::{def, BindingAnnotation, Block, Expr, ExprKind, MatchSource, PatKind, StmtKind};
|
2020-01-12 06:08:41 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 11:37:08 +00:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-11-05 13:29:48 +00:00
|
|
|
use rustc_span::sym;
|
2018-01-28 00:04:22 +00:00
|
|
|
|
2019-01-31 01:15:29 +00:00
|
|
|
use crate::utils::sugg::Sugg;
|
2020-03-04 07:59:16 +00:00
|
|
|
use crate::utils::{
|
2021-01-01 18:38:11 +00:00
|
|
|
eq_expr_value, is_type_diagnostic_item, match_def_path, match_qpath, paths, snippet_with_applicability,
|
2020-08-28 14:10:16 +00:00
|
|
|
span_lint_and_sugg,
|
2020-03-04 07:59:16 +00:00
|
|
|
};
|
2018-01-28 00:04:22 +00:00
|
|
|
|
2018-11-27 20:14:15 +00:00
|
|
|
declare_clippy_lint! {
|
2019-01-31 01:15:29 +00:00
|
|
|
/// **What it does:** Checks for expressions that could be replaced by the question mark operator.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
2019-01-31 01:15:29 +00:00
|
|
|
/// **Why is this bad?** Question mark usage is more idiomatic.
|
2019-03-05 16:50:33 +00:00
|
|
|
///
|
|
|
|
/// **Known problems:** None
|
|
|
|
///
|
|
|
|
/// **Example:**
|
2019-03-05 22:23:50 +00:00
|
|
|
/// ```ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
/// if option.is_none() {
|
|
|
|
/// return None;
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Could be written:
|
|
|
|
///
|
2019-03-05 22:23:50 +00:00
|
|
|
/// ```ignore
|
2019-03-05 16:50:33 +00:00
|
|
|
/// option?;
|
|
|
|
/// ```
|
2018-01-28 00:04:22 +00:00
|
|
|
pub QUESTION_MARK,
|
2018-03-28 13:24:26 +00:00
|
|
|
style,
|
2018-01-28 00:04:22 +00:00
|
|
|
"checks for expressions that could be replaced by the question mark operator"
|
|
|
|
}
|
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
declare_lint_pass!(QuestionMark => [QUESTION_MARK]);
|
2018-01-28 00:04:22 +00:00
|
|
|
|
2019-04-08 20:43:55 +00:00
|
|
|
impl QuestionMark {
|
2019-01-31 01:15:29 +00:00
|
|
|
/// Checks if the given expression on the given context matches the following structure:
|
2018-01-28 00:04:22 +00:00
|
|
|
///
|
2018-06-25 19:22:53 +00:00
|
|
|
/// ```ignore
|
2018-01-28 00:04:22 +00:00
|
|
|
/// if option.is_none() {
|
2019-03-10 17:19:47 +00:00
|
|
|
/// return None;
|
2018-01-28 00:04:22 +00:00
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// If it matches, it will suggest to use the question mark operator instead
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_is_none_and_early_return_none(cx: &LateContext<'_>, expr: &Expr<'_>) {
|
2018-01-28 00:04:22 +00:00
|
|
|
if_chain! {
|
2021-01-01 18:38:11 +00:00
|
|
|
if let ExprKind::If(if_expr, body, else_) = &expr.kind;
|
2020-06-09 21:44:04 +00:00
|
|
|
if let ExprKind::MethodCall(segment, _, args, _) = &if_expr.kind;
|
2019-05-17 21:53:54 +00:00
|
|
|
if segment.ident.name == sym!(is_none);
|
2018-03-15 15:07:15 +00:00
|
|
|
if Self::expression_returns_none(cx, body);
|
2018-01-28 00:04:22 +00:00
|
|
|
if let Some(subject) = args.get(0);
|
|
|
|
if Self::is_option(cx, subject);
|
|
|
|
|
|
|
|
then {
|
2020-03-04 08:21:07 +00:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2020-03-04 12:59:58 +00:00
|
|
|
let receiver_str = &Sugg::hir_with_applicability(cx, subject, "..", &mut applicability);
|
2018-12-19 19:55:01 +00:00
|
|
|
let mut replacement: Option<String> = None;
|
2018-12-12 08:46:52 +00:00
|
|
|
if let Some(else_) = else_ {
|
|
|
|
if_chain! {
|
2019-09-27 15:16:06 +00:00
|
|
|
if let ExprKind::Block(block, None) = &else_.kind;
|
2019-12-27 07:12:26 +00:00
|
|
|
if block.stmts.is_empty();
|
2018-12-12 08:46:52 +00:00
|
|
|
if let Some(block_expr) = &block.expr;
|
2020-08-28 14:10:16 +00:00
|
|
|
if eq_expr_value(cx, subject, block_expr);
|
2018-12-12 08:46:52 +00:00
|
|
|
then {
|
2018-12-19 19:55:01 +00:00
|
|
|
replacement = Some(format!("Some({}?)", receiver_str));
|
2018-12-12 08:46:52 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-17 04:09:02 +00:00
|
|
|
} else if Self::moves_by_default(cx, subject)
|
|
|
|
&& !matches!(subject.kind, ExprKind::Call(..) | ExprKind::MethodCall(..))
|
|
|
|
{
|
|
|
|
replacement = Some(format!("{}.as_ref()?;", receiver_str));
|
2018-12-18 10:25:13 +00:00
|
|
|
} else {
|
2020-04-17 04:09:02 +00:00
|
|
|
replacement = Some(format!("{}?;", receiver_str));
|
2018-12-12 08:46:52 +00:00
|
|
|
}
|
2018-12-19 19:55:01 +00:00
|
|
|
|
|
|
|
if let Some(replacement_str) = replacement {
|
2020-03-04 12:59:58 +00:00
|
|
|
span_lint_and_sugg(
|
2018-12-19 19:55:01 +00:00
|
|
|
cx,
|
|
|
|
QUESTION_MARK,
|
|
|
|
expr.span,
|
|
|
|
"this block may be rewritten with the `?` operator",
|
2020-03-04 12:59:58 +00:00
|
|
|
"replace it with",
|
|
|
|
replacement_str,
|
|
|
|
applicability,
|
2018-12-19 19:55:01 +00:00
|
|
|
)
|
2020-06-09 14:36:01 +00:00
|
|
|
}
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn check_if_let_some_and_early_return_none(cx: &LateContext<'_>, expr: &Expr<'_>) {
|
2020-03-04 07:59:16 +00:00
|
|
|
if_chain! {
|
|
|
|
if let ExprKind::Match(subject, arms, source) = &expr.kind;
|
|
|
|
if *source == MatchSource::IfLetDesugar { contains_else_clause: true };
|
|
|
|
if Self::is_option(cx, subject);
|
|
|
|
|
|
|
|
if let PatKind::TupleStruct(path1, fields, None) = &arms[0].pat.kind;
|
|
|
|
if match_qpath(path1, &["Some"]);
|
|
|
|
if let PatKind::Binding(annot, _, bind, _) = &fields[0].kind;
|
|
|
|
let by_ref = matches!(annot, BindingAnnotation::Ref | BindingAnnotation::RefMut);
|
|
|
|
|
|
|
|
if let ExprKind::Block(block, None) = &arms[0].body.kind;
|
|
|
|
if block.stmts.is_empty();
|
|
|
|
if let Some(trailing_expr) = &block.expr;
|
|
|
|
if let ExprKind::Path(path) = &trailing_expr.kind;
|
|
|
|
if match_qpath(path, &[&bind.as_str()]);
|
|
|
|
|
|
|
|
if let PatKind::Wild = arms[1].pat.kind;
|
|
|
|
if Self::expression_returns_none(cx, arms[1].body);
|
|
|
|
then {
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
|
|
|
let receiver_str = snippet_with_applicability(cx, subject.span, "..", &mut applicability);
|
|
|
|
let replacement = format!(
|
|
|
|
"{}{}?",
|
|
|
|
receiver_str,
|
|
|
|
if by_ref { ".as_ref()" } else { "" },
|
|
|
|
);
|
|
|
|
|
2020-03-04 12:59:58 +00:00
|
|
|
span_lint_and_sugg(
|
2020-03-04 07:59:16 +00:00
|
|
|
cx,
|
|
|
|
QUESTION_MARK,
|
|
|
|
expr.span,
|
|
|
|
"this if-let-else may be rewritten with the `?` operator",
|
2020-03-04 12:59:58 +00:00
|
|
|
"replace it with",
|
|
|
|
replacement,
|
|
|
|
applicability,
|
2020-03-04 07:59:16 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn moves_by_default(cx: &LateContext<'_>, expression: &Expr<'_>) -> bool {
|
2020-07-17 08:47:04 +00:00
|
|
|
let expr_ty = cx.typeck_results().expr_ty(expression);
|
2018-12-18 12:55:04 +00:00
|
|
|
|
2020-06-21 09:20:48 +00:00
|
|
|
!expr_ty.is_copy_modulo_regions(cx.tcx.at(expression.span), cx.param_env)
|
2018-12-18 12:55:04 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn is_option(cx: &LateContext<'_>, expression: &Expr<'_>) -> bool {
|
2020-07-17 08:47:04 +00:00
|
|
|
let expr_ty = cx.typeck_results().expr_ty(expression);
|
2018-01-28 00:04:22 +00:00
|
|
|
|
2020-11-05 13:29:48 +00:00
|
|
|
is_type_diagnostic_item(cx, expr_ty, sym::option_type)
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
fn expression_returns_none(cx: &LateContext<'_>, expression: &Expr<'_>) -> bool {
|
2019-09-27 15:16:06 +00:00
|
|
|
match expression.kind {
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Block(ref block, _) => {
|
2018-01-28 00:04:22 +00:00
|
|
|
if let Some(return_expression) = Self::return_expression(block) {
|
|
|
|
return Self::expression_returns_none(cx, &return_expression);
|
|
|
|
}
|
|
|
|
|
|
|
|
false
|
2018-12-19 19:31:08 +00:00
|
|
|
},
|
2018-11-27 20:14:15 +00:00
|
|
|
ExprKind::Ret(Some(ref expr)) => Self::expression_returns_none(cx, expr),
|
2018-07-12 07:30:57 +00:00
|
|
|
ExprKind::Path(ref qp) => {
|
2019-05-04 00:03:12 +00:00
|
|
|
if let Res::Def(DefKind::Ctor(def::CtorOf::Variant, def::CtorKind::Const), def_id) =
|
2020-06-26 02:55:23 +00:00
|
|
|
cx.qpath_res(qp, expression.hir_id)
|
2019-05-04 00:03:12 +00:00
|
|
|
{
|
2020-04-12 13:23:07 +00:00
|
|
|
return match_def_path(cx, def_id, &paths::OPTION_NONE);
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
false
|
2018-12-19 19:31:08 +00:00
|
|
|
},
|
2018-11-27 20:14:15 +00:00
|
|
|
_ => false,
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-27 07:12:26 +00:00
|
|
|
fn return_expression<'tcx>(block: &Block<'tcx>) -> Option<&'tcx Expr<'tcx>> {
|
2018-01-28 00:04:22 +00:00
|
|
|
// Check if last expression is a return statement. Then, return the expression
|
|
|
|
if_chain! {
|
|
|
|
if block.stmts.len() == 1;
|
|
|
|
if let Some(expr) = block.stmts.iter().last();
|
2019-09-27 15:16:06 +00:00
|
|
|
if let StmtKind::Semi(ref expr) = expr.kind;
|
2020-12-06 14:01:03 +00:00
|
|
|
if let ExprKind::Ret(Some(ret_expr)) = expr.kind;
|
2018-01-28 00:04:22 +00:00
|
|
|
|
|
|
|
then {
|
2019-06-21 06:14:07 +00:00
|
|
|
return Some(ret_expr);
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-11 14:21:25 +00:00
|
|
|
// Check for `return` without a semicolon.
|
|
|
|
if_chain! {
|
2019-12-27 07:12:26 +00:00
|
|
|
if block.stmts.is_empty();
|
2019-09-27 15:16:06 +00:00
|
|
|
if let Some(ExprKind::Ret(Some(ret_expr))) = block.expr.as_ref().map(|e| &e.kind);
|
2018-12-11 14:21:25 +00:00
|
|
|
then {
|
2019-06-21 06:14:07 +00:00
|
|
|
return Some(ret_expr);
|
2018-12-11 14:21:25 +00:00
|
|
|
}
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
|
2018-03-15 15:07:15 +00:00
|
|
|
None
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 20:41:36 +00:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for QuestionMark {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2018-01-28 00:04:22 +00:00
|
|
|
Self::check_is_none_and_early_return_none(cx, expr);
|
2020-03-04 07:59:16 +00:00
|
|
|
Self::check_if_let_some_and_early_return_none(cx, expr);
|
2018-01-28 00:04:22 +00:00
|
|
|
}
|
|
|
|
}
|