rust/clippy_lints/src/fallible_impl_from.rs

134 lines
4.5 KiB
Rust
Raw Normal View History

use clippy_utils::diagnostics::span_lint_and_then;
use clippy_utils::macros::{is_panic, root_macro_call_first_node};
use clippy_utils::method_chain_args;
use clippy_utils::ty::is_type_diagnostic_item;
2018-11-27 14:14:15 -06:00
use if_chain::if_chain;
2020-01-06 10:39:50 -06:00
use rustc_hir as hir;
2020-01-12 00:08:41 -06:00
use rustc_lint::{LateContext, LateLintPass};
use rustc_middle::ty;
2020-01-11 05:37:08 -06:00
use rustc_session::{declare_lint_pass, declare_tool_lint};
use rustc_span::{sym, Span};
2017-10-16 16:06:31 -05:00
2018-03-28 08:24:26 -05:00
declare_clippy_lint! {
/// ### What it does
/// Checks for impls of `From<..>` that contain `panic!()` or `unwrap()`
///
/// ### Why is this bad?
/// `TryFrom` should be used if there's a possibility of failure.
///
/// ### Example
/// ```rust
/// struct Foo(i32);
///
/// // Bad
/// impl From<String> for Foo {
/// fn from(s: String) -> Self {
/// Foo(s.parse().unwrap())
/// }
/// }
/// ```
///
/// ```rust
/// // Good
/// struct Foo(i32);
///
/// impl TryFrom<String> for Foo {
/// type Error = ();
/// fn try_from(s: String) -> Result<Self, Self::Error> {
/// if let Ok(parsed) = s.parse() {
/// Ok(Foo(parsed))
/// } else {
/// Err(())
/// }
/// }
/// }
/// ```
#[clippy::version = "pre 1.29.0"]
2018-03-28 08:24:26 -05:00
pub FALLIBLE_IMPL_FROM,
nursery,
2017-10-17 11:09:10 -05:00
"Warn on impls of `From<..>` that contain `panic!()` or `unwrap()`"
2017-10-16 16:06:31 -05:00
}
2019-04-08 15:43:55 -05:00
declare_lint_pass!(FallibleImplFrom => [FALLIBLE_IMPL_FROM]);
2017-10-16 16:06:31 -05:00
impl<'tcx> LateLintPass<'tcx> for FallibleImplFrom {
fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx hir::Item<'_>) {
2017-10-16 16:06:31 -05:00
// check for `impl From<???> for ..`
if_chain! {
if let hir::ItemKind::Impl(impl_) = &item.kind;
if let Some(impl_trait_ref) = cx.tcx.impl_trait_ref(item.def_id);
2021-10-02 18:51:01 -05:00
if cx.tcx.is_diagnostic_item(sym::From, impl_trait_ref.def_id);
then {
lint_impl_body(cx, item.span, impl_.items);
}
}
2017-10-16 16:06:31 -05:00
}
}
2021-07-15 15:19:39 -05:00
fn lint_impl_body<'tcx>(cx: &LateContext<'tcx>, impl_span: Span, impl_items: &[hir::ImplItemRef]) {
2022-01-15 16:07:52 -06:00
use rustc_hir::intravisit::{self, Visitor};
use rustc_hir::{Expr, ImplItemKind};
2017-10-16 16:06:31 -05:00
struct FindPanicUnwrap<'a, 'tcx> {
lcx: &'a LateContext<'tcx>,
2020-07-17 03:47:04 -05:00
typeck_results: &'tcx ty::TypeckResults<'tcx>,
2017-10-16 16:06:31 -05:00
result: Vec<Span>,
}
impl<'a, 'tcx> Visitor<'tcx> for FindPanicUnwrap<'a, 'tcx> {
2019-12-27 01:12:26 -06:00
fn visit_expr(&mut self, expr: &'tcx Expr<'_>) {
if let Some(macro_call) = root_macro_call_first_node(self.lcx, expr) {
if is_panic(self.lcx, macro_call.def_id) {
self.result.push(expr.span);
}
}
2017-10-16 16:06:31 -05:00
// check for `unwrap`
2019-05-17 16:53:54 -05:00
if let Some(arglists) = method_chain_args(expr, &["unwrap"]) {
let receiver_ty = self.typeck_results.expr_ty(&arglists[0][0]).peel_refs();
if is_type_diagnostic_item(self.lcx, receiver_ty, sym::Option)
|| is_type_diagnostic_item(self.lcx, receiver_ty, sym::Result)
2020-04-12 08:23:54 -05:00
{
2017-10-16 16:06:31 -05:00
self.result.push(expr.span);
}
}
// and check sub-expressions
intravisit::walk_expr(self, expr);
}
}
for impl_item in impl_items {
if_chain! {
if impl_item.ident.name == sym::from;
if let ImplItemKind::Fn(_, body_id) =
2019-09-27 10:16:06 -05:00
cx.tcx.hir().impl_item(impl_item.id).kind;
then {
// check the body for `begin_panic` or `unwrap`
let body = cx.tcx.hir().body(body_id);
let mut fpu = FindPanicUnwrap {
lcx: cx,
typeck_results: cx.tcx.typeck(impl_item.id.def_id),
result: Vec::new(),
};
fpu.visit_expr(&body.value);
2017-11-04 14:55:56 -05:00
// if we've found one, lint
if !fpu.result.is_empty() {
span_lint_and_then(
cx,
FALLIBLE_IMPL_FROM,
impl_span,
"consider implementing `TryFrom` instead",
move |diag| {
diag.help(
"`From` is intended for infallible conversions only. \
Use `TryFrom` if there's a possibility for the conversion to fail");
diag.span_note(fpu.result, "potential failure(s)");
});
}
2017-10-16 16:06:31 -05:00
}
}
2017-10-16 16:06:31 -05:00
}
}