mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 12:36:35 +03:00
80 lines
2.6 KiB
Rust
80 lines
2.6 KiB
Rust
use clippy_utils::diagnostics::span_lint;
|
|
use clippy_utils::sym;
|
|
use rustc_errors::MultiSpan;
|
|
use rustc_hir::{Item, ItemKind};
|
|
use rustc_lint::{LateContext, LateLintPass};
|
|
use rustc_middle::ty::AssocTag;
|
|
use rustc_session::declare_lint_pass;
|
|
|
|
declare_clippy_lint! {
|
|
/// ### What it does
|
|
///
|
|
/// Finds manual impls of `TryFrom` with infallible error types.
|
|
///
|
|
/// ### Why is this bad?
|
|
///
|
|
/// Infallible conversions should be implemented via `From` with the blanket conversion.
|
|
///
|
|
/// ### Example
|
|
/// ```no_run
|
|
/// use std::convert::Infallible;
|
|
/// struct MyStruct(i16);
|
|
/// impl TryFrom<i16> for MyStruct {
|
|
/// type Error = Infallible;
|
|
/// fn try_from(other: i16) -> Result<Self, Infallible> {
|
|
/// Ok(Self(other.into()))
|
|
/// }
|
|
/// }
|
|
/// ```
|
|
/// Use instead:
|
|
/// ```no_run
|
|
/// struct MyStruct(i16);
|
|
/// impl From<i16> for MyStruct {
|
|
/// fn from(other: i16) -> Self {
|
|
/// Self(other)
|
|
/// }
|
|
/// }
|
|
/// ```
|
|
#[clippy::version = "1.89.0"]
|
|
pub INFALLIBLE_TRY_FROM,
|
|
suspicious,
|
|
"TryFrom with infallible Error type"
|
|
}
|
|
declare_lint_pass!(InfallibleTryFrom => [INFALLIBLE_TRY_FROM]);
|
|
|
|
impl<'tcx> LateLintPass<'tcx> for InfallibleTryFrom {
|
|
fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'tcx>) {
|
|
let ItemKind::Impl(imp) = item.kind else { return };
|
|
let Some(of_trait) = imp.of_trait else { return };
|
|
let Some(trait_def_id) = of_trait.trait_ref.trait_def_id() else {
|
|
return;
|
|
};
|
|
if !cx.tcx.is_diagnostic_item(sym::TryFrom, trait_def_id) {
|
|
return;
|
|
}
|
|
for ii in cx
|
|
.tcx
|
|
.associated_items(item.owner_id.def_id)
|
|
.filter_by_name_unhygienic_and_kind(sym::Error, AssocTag::Type)
|
|
{
|
|
let ii_ty = cx.tcx.type_of(ii.def_id).instantiate_identity();
|
|
if !ii_ty.is_inhabited_from(cx.tcx, ii.def_id, cx.typing_env()) {
|
|
let mut span = MultiSpan::from_span(cx.tcx.def_span(item.owner_id.to_def_id()));
|
|
let ii_ty_span = cx
|
|
.tcx
|
|
.hir_node_by_def_id(ii.def_id.expect_local())
|
|
.expect_impl_item()
|
|
.expect_type()
|
|
.span;
|
|
span.push_span_label(ii_ty_span, "infallible error type");
|
|
span_lint(
|
|
cx,
|
|
INFALLIBLE_TRY_FROM,
|
|
span,
|
|
"infallible TryFrom impl; consider implementing From instead",
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|