2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::diagnostics::span_lint_and_sugg;
|
2021-08-08 09:49:13 -05:00
|
|
|
use clippy_utils::higher;
|
2021-04-22 04:31:13 -05:00
|
|
|
use clippy_utils::is_lang_ctor;
|
2021-03-25 13:29:11 -05:00
|
|
|
use clippy_utils::source::snippet_with_applicability;
|
|
|
|
use clippy_utils::sugg::Sugg;
|
|
|
|
use clippy_utils::ty::is_type_diagnostic_item;
|
2021-04-22 04:31:13 -05:00
|
|
|
use clippy_utils::{eq_expr_value, path_to_local_id};
|
2018-11-27 14:14:15 -06:00
|
|
|
use if_chain::if_chain;
|
2019-01-30 19:15:29 -06:00
|
|
|
use rustc_errors::Applicability;
|
2021-04-22 04:31:13 -05:00
|
|
|
use rustc_hir::LangItem::{OptionNone, OptionSome};
|
2021-08-08 09:49:13 -05:00
|
|
|
use rustc_hir::{BindingAnnotation, Block, Expr, ExprKind, PatKind, StmtKind};
|
2020-01-12 00:08:41 -06:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
2020-01-11 05:37:08 -06:00
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-11-05 07:29:48 -06:00
|
|
|
use rustc_span::sym;
|
2018-01-27 18:04:22 -06:00
|
|
|
|
2018-11-27 14:14:15 -06:00
|
|
|
declare_clippy_lint! {
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### What it does
|
|
|
|
/// Checks for expressions that could be replaced by the question mark operator.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Why is this bad?
|
|
|
|
/// Question mark usage is more idiomatic.
|
2019-03-05 10:50:33 -06:00
|
|
|
///
|
2021-07-29 05:16:06 -05:00
|
|
|
/// ### Example
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// if option.is_none() {
|
|
|
|
/// return None;
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// Could be written:
|
|
|
|
///
|
2019-03-05 16:23:50 -06:00
|
|
|
/// ```ignore
|
2019-03-05 10:50:33 -06:00
|
|
|
/// option?;
|
|
|
|
/// ```
|
2018-01-27 18:04:22 -06:00
|
|
|
pub QUESTION_MARK,
|
2018-03-28 08:24:26 -05:00
|
|
|
style,
|
2018-01-27 18:04:22 -06:00
|
|
|
"checks for expressions that could be replaced by the question mark operator"
|
|
|
|
}
|
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
declare_lint_pass!(QuestionMark => [QUESTION_MARK]);
|
2018-01-27 18:04:22 -06:00
|
|
|
|
2019-04-08 15:43:55 -05:00
|
|
|
impl QuestionMark {
|
2019-01-30 19:15:29 -06:00
|
|
|
/// Checks if the given expression on the given context matches the following structure:
|
2018-01-27 18:04:22 -06:00
|
|
|
///
|
2018-06-25 14:22:53 -05:00
|
|
|
/// ```ignore
|
2018-01-27 18:04:22 -06:00
|
|
|
/// if option.is_none() {
|
2019-03-10 12:19:47 -05:00
|
|
|
/// return None;
|
2018-01-27 18:04:22 -06:00
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
///
|
|
|
|
/// If it matches, it will suggest to use the question mark operator instead
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_is_none_and_early_return_none(cx: &LateContext<'_>, expr: &Expr<'_>) {
|
2018-01-27 18:04:22 -06:00
|
|
|
if_chain! {
|
2021-08-08 09:49:13 -05:00
|
|
|
if let Some(higher::If { cond, then, r#else }) = higher::If::hir(expr);
|
|
|
|
if let ExprKind::MethodCall(segment, _, args, _) = &cond.kind;
|
2019-05-17 16:53:54 -05:00
|
|
|
if segment.ident.name == sym!(is_none);
|
2021-08-08 09:49:13 -05:00
|
|
|
if Self::expression_returns_none(cx, then);
|
2018-01-27 18:04:22 -06:00
|
|
|
if let Some(subject) = args.get(0);
|
|
|
|
if Self::is_option(cx, subject);
|
|
|
|
|
|
|
|
then {
|
2020-03-04 02:21:07 -06:00
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2020-03-04 06:59:58 -06:00
|
|
|
let receiver_str = &Sugg::hir_with_applicability(cx, subject, "..", &mut applicability);
|
2018-12-19 13:55:01 -06:00
|
|
|
let mut replacement: Option<String> = None;
|
2021-08-08 09:49:13 -05:00
|
|
|
if let Some(else_inner) = r#else {
|
2018-12-12 02:46:52 -06:00
|
|
|
if_chain! {
|
2021-08-08 09:49:13 -05:00
|
|
|
if let ExprKind::Block(block, None) = &else_inner.kind;
|
2019-12-27 01:12:26 -06:00
|
|
|
if block.stmts.is_empty();
|
2018-12-12 02:46:52 -06:00
|
|
|
if let Some(block_expr) = &block.expr;
|
2020-08-28 09:10:16 -05:00
|
|
|
if eq_expr_value(cx, subject, block_expr);
|
2018-12-12 02:46:52 -06:00
|
|
|
then {
|
2018-12-19 13:55:01 -06:00
|
|
|
replacement = Some(format!("Some({}?)", receiver_str));
|
2018-12-12 02:46:52 -06:00
|
|
|
}
|
|
|
|
}
|
2020-04-16 23:09:02 -05: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 04:25:13 -06:00
|
|
|
} else {
|
2020-04-16 23:09:02 -05:00
|
|
|
replacement = Some(format!("{}?;", receiver_str));
|
2018-12-12 02:46:52 -06:00
|
|
|
}
|
2018-12-19 13:55:01 -06:00
|
|
|
|
|
|
|
if let Some(replacement_str) = replacement {
|
2020-03-04 06:59:58 -06:00
|
|
|
span_lint_and_sugg(
|
2018-12-19 13:55:01 -06:00
|
|
|
cx,
|
|
|
|
QUESTION_MARK,
|
|
|
|
expr.span,
|
|
|
|
"this block may be rewritten with the `?` operator",
|
2020-03-04 06:59:58 -06:00
|
|
|
"replace it with",
|
|
|
|
replacement_str,
|
|
|
|
applicability,
|
2021-06-03 01:41:37 -05:00
|
|
|
);
|
2020-06-09 09:36:01 -05:00
|
|
|
}
|
2018-01-27 18:04:22 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn check_if_let_some_and_early_return_none(cx: &LateContext<'_>, expr: &Expr<'_>) {
|
2020-03-04 01:59:16 -06:00
|
|
|
if_chain! {
|
2021-09-02 06:38:17 -05:00
|
|
|
if let Some(higher::IfLet { let_pat, let_expr, if_then, if_else: Some(if_else) })
|
|
|
|
= higher::IfLet::hir(cx, expr);
|
2021-08-08 09:49:13 -05:00
|
|
|
if Self::is_option(cx, let_expr);
|
2020-03-04 01:59:16 -06:00
|
|
|
|
2021-08-08 09:49:13 -05:00
|
|
|
if let PatKind::TupleStruct(ref path1, fields, None) = let_pat.kind;
|
2021-04-22 04:31:13 -05:00
|
|
|
if is_lang_ctor(cx, path1, OptionSome);
|
|
|
|
if let PatKind::Binding(annot, bind_id, _, _) = fields[0].kind;
|
2020-03-04 01:59:16 -06:00
|
|
|
let by_ref = matches!(annot, BindingAnnotation::Ref | BindingAnnotation::RefMut);
|
|
|
|
|
2021-08-26 10:25:14 -05:00
|
|
|
if let ExprKind::Block(block, None) = if_then.kind;
|
2020-03-04 01:59:16 -06:00
|
|
|
if block.stmts.is_empty();
|
|
|
|
if let Some(trailing_expr) = &block.expr;
|
2021-04-22 04:31:13 -05:00
|
|
|
if path_to_local_id(trailing_expr, bind_id);
|
2020-03-04 01:59:16 -06:00
|
|
|
|
2021-08-08 09:49:13 -05:00
|
|
|
if Self::expression_returns_none(cx, if_else);
|
2020-03-04 01:59:16 -06:00
|
|
|
then {
|
|
|
|
let mut applicability = Applicability::MachineApplicable;
|
2021-08-08 09:49:13 -05:00
|
|
|
let receiver_str = snippet_with_applicability(cx, let_expr.span, "..", &mut applicability);
|
2020-03-04 01:59:16 -06:00
|
|
|
let replacement = format!(
|
|
|
|
"{}{}?",
|
|
|
|
receiver_str,
|
|
|
|
if by_ref { ".as_ref()" } else { "" },
|
|
|
|
);
|
|
|
|
|
2020-03-04 06:59:58 -06:00
|
|
|
span_lint_and_sugg(
|
2020-03-04 01:59:16 -06:00
|
|
|
cx,
|
|
|
|
QUESTION_MARK,
|
|
|
|
expr.span,
|
|
|
|
"this if-let-else may be rewritten with the `?` operator",
|
2020-03-04 06:59:58 -06:00
|
|
|
"replace it with",
|
|
|
|
replacement,
|
|
|
|
applicability,
|
2021-06-03 01:41:37 -05:00
|
|
|
);
|
2020-03-04 01:59:16 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn moves_by_default(cx: &LateContext<'_>, expression: &Expr<'_>) -> bool {
|
2020-07-17 03:47:04 -05:00
|
|
|
let expr_ty = cx.typeck_results().expr_ty(expression);
|
2018-12-18 06:55:04 -06:00
|
|
|
|
2020-06-21 04:20:48 -05:00
|
|
|
!expr_ty.is_copy_modulo_regions(cx.tcx.at(expression.span), cx.param_env)
|
2018-12-18 06:55:04 -06:00
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn is_option(cx: &LateContext<'_>, expression: &Expr<'_>) -> bool {
|
2020-07-17 03:47:04 -05:00
|
|
|
let expr_ty = cx.typeck_results().expr_ty(expression);
|
2018-01-27 18:04:22 -06:00
|
|
|
|
2020-11-05 07:29:48 -06:00
|
|
|
is_type_diagnostic_item(cx, expr_ty, sym::option_type)
|
2018-01-27 18:04:22 -06:00
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
fn expression_returns_none(cx: &LateContext<'_>, expression: &Expr<'_>) -> bool {
|
2019-09-27 10:16:06 -05:00
|
|
|
match expression.kind {
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Block(block, _) => {
|
2018-01-27 18:04:22 -06:00
|
|
|
if let Some(return_expression) = Self::return_expression(block) {
|
2021-04-08 10:50:13 -05:00
|
|
|
return Self::expression_returns_none(cx, return_expression);
|
2018-01-27 18:04:22 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
false
|
2018-12-19 13:31:08 -06:00
|
|
|
},
|
2021-04-08 10:50:13 -05:00
|
|
|
ExprKind::Ret(Some(expr)) => Self::expression_returns_none(cx, expr),
|
2021-04-22 04:31:13 -05:00
|
|
|
ExprKind::Path(ref qpath) => is_lang_ctor(cx, qpath, OptionNone),
|
2018-11-27 14:14:15 -06:00
|
|
|
_ => false,
|
2018-01-27 18:04:22 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-27 01:12:26 -06:00
|
|
|
fn return_expression<'tcx>(block: &Block<'tcx>) -> Option<&'tcx Expr<'tcx>> {
|
2018-01-27 18:04:22 -06: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();
|
2021-04-08 10:50:13 -05:00
|
|
|
if let StmtKind::Semi(expr) = expr.kind;
|
2020-12-06 08:01:03 -06:00
|
|
|
if let ExprKind::Ret(Some(ret_expr)) = expr.kind;
|
2018-01-27 18:04:22 -06:00
|
|
|
|
|
|
|
then {
|
2019-06-21 01:14:07 -05:00
|
|
|
return Some(ret_expr);
|
2018-01-27 18:04:22 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-11 08:21:25 -06:00
|
|
|
// Check for `return` without a semicolon.
|
|
|
|
if_chain! {
|
2019-12-27 01:12:26 -06:00
|
|
|
if block.stmts.is_empty();
|
2019-09-27 10:16:06 -05:00
|
|
|
if let Some(ExprKind::Ret(Some(ret_expr))) = block.expr.as_ref().map(|e| &e.kind);
|
2018-12-11 08:21:25 -06:00
|
|
|
then {
|
2019-06-21 01:14:07 -05:00
|
|
|
return Some(ret_expr);
|
2018-12-11 08:21:25 -06:00
|
|
|
}
|
2018-01-27 18:04:22 -06:00
|
|
|
}
|
|
|
|
|
2018-03-15 10:07:15 -05:00
|
|
|
None
|
2018-01-27 18:04:22 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-25 15:41:36 -05:00
|
|
|
impl<'tcx> LateLintPass<'tcx> for QuestionMark {
|
|
|
|
fn check_expr(&mut self, cx: &LateContext<'tcx>, expr: &'tcx Expr<'_>) {
|
2018-01-27 18:04:22 -06:00
|
|
|
Self::check_is_none_and_early_return_none(cx, expr);
|
2020-03-04 01:59:16 -06:00
|
|
|
Self::check_if_let_some_and_early_return_none(cx, expr);
|
2018-01-27 18:04:22 -06:00
|
|
|
}
|
|
|
|
}
|