rust-clippy/clippy_lints/src/question_mark.rs

167 lines
5.5 KiB
Rust
Raw Normal View History

2018-10-06 16:18:06 +00:00
// Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2018-11-27 20:14:15 +00:00
use crate::rustc::hir::def::Def;
use crate::rustc::hir::*;
use crate::rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
use crate::rustc::{declare_tool_lint, lint_array};
use crate::syntax::ptr::P;
2018-11-27 20:14:15 +00:00
use crate::utils::sugg::Sugg;
use if_chain::if_chain;
2018-01-28 00:04:22 +00:00
use crate::rustc_errors::Applicability;
2018-11-27 20:14:15 +00:00
use crate::utils::paths::*;
use crate::utils::{match_def_path, match_type, span_lint_and_then, SpanlessEq};
2018-01-28 00:04:22 +00:00
/// **What it does:** Checks for expressions that could be replaced by the question mark operator
///
/// **Why is this bad?** Question mark usage is more idiomatic
///
/// **Known problems:** None
///
/// **Example:**
/// ```rust
/// if option.is_none() {
/// return None;
/// }
/// ```
///
/// Could be written:
///
/// ```rust
/// option?;
/// ```
2018-11-27 20:14:15 +00:00
declare_clippy_lint! {
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"
}
#[derive(Copy, Clone)]
2018-10-13 00:07:48 +00:00
pub struct Pass;
2018-01-28 00:04:22 +00:00
2018-10-13 00:07:48 +00:00
impl LintPass for Pass {
2018-01-28 00:04:22 +00:00
fn get_lints(&self) -> LintArray {
lint_array!(QUESTION_MARK)
}
}
2018-10-13 00:07:48 +00:00
impl Pass {
2018-01-28 00:04:22 +00:00
/// Check if the given expression on the given context matches the following structure:
///
2018-06-25 19:22:53 +00:00
/// ```ignore
2018-01-28 00:04:22 +00:00
/// if option.is_none() {
/// return None;
/// }
/// ```
///
/// If it matches, it will suggest to use the question mark operator instead
2018-07-23 11:01:12 +00:00
fn check_is_none_and_early_return_none(cx: &LateContext<'_, '_>, expr: &Expr) {
2018-01-28 00:04:22 +00:00
if_chain! {
if let ExprKind::If(if_expr, body, else_) = &expr.node;
if let ExprKind::MethodCall(segment, _, args) = &if_expr.node;
2018-06-28 13:46:58 +00:00
if segment.ident.name == "is_none";
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 {
2018-12-18 10:25:13 +00:00
let receiver_str = &Sugg::hir(cx, subject, "..");
let mut replacement_str = String::new();
if let Some(else_) = else_ {
if_chain! {
if let ExprKind::Block(block, None) = &else_.node;
if block.stmts.len() == 0;
if let Some(block_expr) = &block.expr;
if SpanlessEq::new(cx).ignore_fn().eq_expr(subject, block_expr);
then {
2018-12-18 10:25:13 +00:00
replacement_str = format!("Some({}?)", receiver_str);
}
}
2018-12-18 10:25:13 +00:00
} else {
replacement_str = format!("{}?;", receiver_str);
}
2018-01-28 00:04:22 +00:00
span_lint_and_then(
cx,
QUESTION_MARK,
expr.span,
"this block may be rewritten with the `?` operator",
2018-01-28 00:04:22 +00:00
|db| {
db.span_suggestion_with_applicability(
2018-01-28 00:04:22 +00:00
expr.span,
"replace_it_with",
2018-12-18 10:25:13 +00:00
replacement_str,
2018-12-11 14:05:43 +00:00
Applicability::MaybeIncorrect, // snippet
2018-01-28 00:04:22 +00:00
);
}
)
}
}
}
2018-07-23 11:01:12 +00:00
fn is_option(cx: &LateContext<'_, '_>, expression: &Expr) -> bool {
2018-01-28 00:04:22 +00:00
let expr_ty = cx.tables.expr_ty(expression);
match_type(cx, expr_ty, &OPTION)
2018-01-28 00:04:22 +00:00
}
2018-07-23 11:01:12 +00:00
fn expression_returns_none(cx: &LateContext<'_, '_>, expression: &Expr) -> bool {
2018-01-28 00:04:22 +00:00
match expression.node {
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-18 10:25:13 +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) => {
2018-01-28 00:04:22 +00:00
if let Def::VariantCtor(def_id, _) = cx.tables.qpath_def(qp, expression.hir_id) {
2018-11-27 20:14:15 +00:00
return match_def_path(cx.tcx, def_id, &OPTION_NONE);
2018-01-28 00:04:22 +00:00
}
false
2018-12-18 10:25:13 +00:00
}
2018-11-27 20:14:15 +00:00
_ => false,
2018-01-28 00:04:22 +00:00
}
}
fn return_expression(block: &Block) -> Option<P<Expr>> {
// 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();
2018-07-12 08:53:53 +00:00
if let StmtKind::Semi(ref expr, _) = expr.node;
2018-07-12 07:30:57 +00:00
if let ExprKind::Ret(ref ret_expr) = expr.node;
2018-01-28 00:04:22 +00:00
if let &Some(ref ret_expr) = ret_expr;
then {
return Some(ret_expr.clone());
}
}
2018-12-11 14:21:25 +00:00
// Check for `return` without a semicolon.
if_chain! {
if block.stmts.len() == 0;
if let Some(ExprKind::Ret(Some(ret_expr))) = block.expr.as_ref().map(|e| &e.node);
then {
return Some(ret_expr.clone());
}
2018-01-28 00:04:22 +00:00
}
None
2018-01-28 00:04:22 +00:00
}
}
2018-10-13 00:07:48 +00:00
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for Pass {
2018-01-28 00:04:22 +00:00
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
Self::check_is_none_and_early_return_none(cx, expr);
}
}