2020-11-23 12:51:04 +00:00
|
|
|
use crate::utils::{
|
2021-02-02 23:39:23 +00:00
|
|
|
contains_return, in_macro, is_type_diagnostic_item, match_qpath, paths, return_ty, snippet, span_lint_and_sugg,
|
|
|
|
span_lint_and_then, visitors::find_all_ret_expressions,
|
2020-11-23 12:51:04 +00:00
|
|
|
};
|
|
|
|
use if_chain::if_chain;
|
|
|
|
use rustc_errors::Applicability;
|
|
|
|
use rustc_hir::intravisit::FnKind;
|
2021-01-15 09:02:28 +00:00
|
|
|
use rustc_hir::{Body, ExprKind, FnDecl, HirId, Impl, ItemKind, Node};
|
2020-11-23 12:51:04 +00:00
|
|
|
use rustc_lint::{LateContext, LateLintPass};
|
|
|
|
use rustc_middle::ty::subst::GenericArgKind;
|
|
|
|
use rustc_session::{declare_lint_pass, declare_tool_lint};
|
2020-12-20 16:19:49 +00:00
|
|
|
use rustc_span::symbol::sym;
|
2020-11-23 12:51:04 +00:00
|
|
|
use rustc_span::Span;
|
|
|
|
|
|
|
|
declare_clippy_lint! {
|
|
|
|
/// **What it does:** Checks for private functions that only return `Ok` or `Some`.
|
|
|
|
///
|
|
|
|
/// **Why is this bad?** It is not meaningful to wrap values when no `None` or `Err` is returned.
|
|
|
|
///
|
|
|
|
/// **Known problems:** Since this lint changes function type signature, you may need to
|
|
|
|
/// adjust some code at callee side.
|
|
|
|
///
|
|
|
|
/// **Example:**
|
|
|
|
///
|
|
|
|
/// ```rust
|
|
|
|
/// fn get_cool_number(a: bool, b: bool) -> Option<i32> {
|
|
|
|
/// if a && b {
|
|
|
|
/// return Some(50);
|
|
|
|
/// }
|
|
|
|
/// if a {
|
|
|
|
/// Some(0)
|
|
|
|
/// } else {
|
|
|
|
/// Some(10)
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
/// Use instead:
|
|
|
|
/// ```rust
|
|
|
|
/// fn get_cool_number(a: bool, b: bool) -> i32 {
|
|
|
|
/// if a && b {
|
|
|
|
/// return 50;
|
|
|
|
/// }
|
|
|
|
/// if a {
|
|
|
|
/// 0
|
|
|
|
/// } else {
|
|
|
|
/// 10
|
|
|
|
/// }
|
|
|
|
/// }
|
|
|
|
/// ```
|
|
|
|
pub UNNECESSARY_WRAPS,
|
|
|
|
complexity,
|
|
|
|
"functions that only return `Ok` or `Some`"
|
|
|
|
}
|
|
|
|
|
|
|
|
declare_lint_pass!(UnnecessaryWraps => [UNNECESSARY_WRAPS]);
|
|
|
|
|
|
|
|
impl<'tcx> LateLintPass<'tcx> for UnnecessaryWraps {
|
|
|
|
fn check_fn(
|
|
|
|
&mut self,
|
|
|
|
cx: &LateContext<'tcx>,
|
|
|
|
fn_kind: FnKind<'tcx>,
|
|
|
|
fn_decl: &FnDecl<'tcx>,
|
|
|
|
body: &Body<'tcx>,
|
|
|
|
span: Span,
|
|
|
|
hir_id: HirId,
|
|
|
|
) {
|
2021-02-02 23:39:23 +00:00
|
|
|
// Abort if public function/method or closure.
|
2020-11-23 12:51:04 +00:00
|
|
|
match fn_kind {
|
|
|
|
FnKind::ItemFn(.., visibility, _) | FnKind::Method(.., Some(visibility), _) => {
|
|
|
|
if visibility.node.is_pub() {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
FnKind::Closure(..) => return,
|
|
|
|
_ => (),
|
|
|
|
}
|
|
|
|
|
2021-02-02 23:39:23 +00:00
|
|
|
// Abort if the method is implementing a trait or of it a trait method.
|
2020-11-23 12:51:04 +00:00
|
|
|
if let Some(Node::Item(item)) = cx.tcx.hir().find(cx.tcx.hir().get_parent_node(hir_id)) {
|
2020-12-20 16:19:49 +00:00
|
|
|
if matches!(
|
|
|
|
item.kind,
|
2020-11-22 22:46:21 +00:00
|
|
|
ItemKind::Impl(Impl { of_trait: Some(_), .. }) | ItemKind::Trait(..)
|
2020-12-20 16:19:49 +00:00
|
|
|
) {
|
2020-11-23 12:51:04 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-02 23:39:23 +00:00
|
|
|
// Check if return type is Option or Result. If neither, abort.
|
|
|
|
let return_ty = return_ty(cx, hir_id);
|
|
|
|
let (return_type_label, path) = if is_type_diagnostic_item(cx, return_ty, sym::option_type) {
|
2020-11-23 12:51:04 +00:00
|
|
|
("Option", &paths::OPTION_SOME)
|
2021-02-02 23:39:23 +00:00
|
|
|
} else if is_type_diagnostic_item(cx, return_ty, sym::result_type) {
|
2020-11-23 12:51:04 +00:00
|
|
|
("Result", &paths::RESULT_OK)
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
2021-02-02 23:39:23 +00:00
|
|
|
// Take the first inner type of the Option or Result. If can't, abort.
|
|
|
|
let inner_ty = if_chain! {
|
|
|
|
// Skip Option or Result and take the first outermost inner type.
|
|
|
|
if let Some(inner_ty) = return_ty.walk().nth(1);
|
|
|
|
if let GenericArgKind::Type(inner_ty) = inner_ty.unpack();
|
|
|
|
then {
|
|
|
|
inner_ty
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Check if all return expression respect the following condition and collect them.
|
2020-11-23 12:51:04 +00:00
|
|
|
let mut suggs = Vec::new();
|
|
|
|
let can_sugg = find_all_ret_expressions(cx, &body.value, |ret_expr| {
|
|
|
|
if_chain! {
|
2021-02-02 23:39:23 +00:00
|
|
|
// Abort if in macro.
|
2020-11-23 12:51:04 +00:00
|
|
|
if !in_macro(ret_expr.span);
|
2021-02-02 23:39:23 +00:00
|
|
|
// Check if a function call.
|
2020-11-23 12:51:04 +00:00
|
|
|
if let ExprKind::Call(ref func, ref args) = ret_expr.kind;
|
2021-02-02 23:39:23 +00:00
|
|
|
// Get the Path of the function call.
|
2020-11-23 12:51:04 +00:00
|
|
|
if let ExprKind::Path(ref qpath) = func.kind;
|
2021-02-02 23:39:23 +00:00
|
|
|
// Check if OPTION_SOME or RESULT_OK, depending on return type.
|
2020-11-23 12:51:04 +00:00
|
|
|
if match_qpath(qpath, path);
|
2021-02-02 23:39:23 +00:00
|
|
|
// Make sure the function call has only one argument.
|
2020-11-23 12:51:04 +00:00
|
|
|
if args.len() == 1;
|
2021-02-02 23:39:23 +00:00
|
|
|
// Make sure the function argument does not contain a return expression.
|
2020-12-06 14:01:03 +00:00
|
|
|
if !contains_return(&args[0]);
|
2020-11-23 12:51:04 +00:00
|
|
|
then {
|
|
|
|
suggs.push((ret_expr.span, snippet(cx, args[0].span.source_callsite(), "..").to_string()));
|
|
|
|
true
|
|
|
|
} else {
|
|
|
|
false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
if can_sugg && !suggs.is_empty() {
|
2021-02-02 23:39:23 +00:00
|
|
|
// Issue 6640: If the inner type is Unit, emit lint similar to clippy::unused_unit.
|
|
|
|
if inner_ty.is_unit() {
|
|
|
|
span_lint_and_sugg(
|
|
|
|
cx,
|
|
|
|
UNNECESSARY_WRAPS,
|
|
|
|
fn_decl.output.span(),
|
|
|
|
"unneeded wrapped unit return type",
|
2021-02-03 00:14:13 +00:00
|
|
|
format!("remove the `-> {}<[...]>`", return_type_label).as_str(),
|
2021-02-02 23:39:23 +00:00
|
|
|
String::new(),
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
span_lint_and_then(
|
|
|
|
cx,
|
|
|
|
UNNECESSARY_WRAPS,
|
|
|
|
span,
|
|
|
|
format!(
|
|
|
|
"this function's return value is unnecessarily wrapped by `{}`",
|
|
|
|
return_type_label
|
|
|
|
)
|
|
|
|
.as_str(),
|
|
|
|
|diag| {
|
2020-11-23 12:51:04 +00:00
|
|
|
diag.span_suggestion(
|
|
|
|
fn_decl.output.span(),
|
2021-02-02 23:39:23 +00:00
|
|
|
format!("remove `{}` from the return type...", return_type_label).as_str(),
|
|
|
|
inner_ty.to_string(),
|
2020-11-23 12:51:04 +00:00
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
2021-02-02 23:39:23 +00:00
|
|
|
diag.multipart_suggestion(
|
|
|
|
"...and change the returning expressions",
|
|
|
|
suggs,
|
|
|
|
Applicability::MaybeIncorrect,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
2020-11-23 12:51:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|