]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/panic_in_result_fn.rs
Rollup merge of #90995 - the8472:hash-portability, r=dtolnay
[rust.git] / src / tools / clippy / clippy_lints / src / panic_in_result_fn.rs
1 use clippy_utils::diagnostics::span_lint_and_then;
2 use clippy_utils::ty::is_type_diagnostic_item;
3 use clippy_utils::{find_macro_calls, is_expn_of, return_ty};
4 use rustc_hir as hir;
5 use rustc_hir::intravisit::FnKind;
6 use rustc_lint::{LateContext, LateLintPass};
7 use rustc_session::{declare_lint_pass, declare_tool_lint};
8 use rustc_span::{sym, Span};
9
10 declare_clippy_lint! {
11     /// ### What it does
12     /// Checks for usage of `panic!`, `unimplemented!`, `todo!`, `unreachable!` or assertions in a function of type result.
13     ///
14     /// ### Why is this bad?
15     /// For some codebases, it is desirable for functions of type result to return an error instead of crashing. Hence panicking macros should be avoided.
16     ///
17     /// ### Known problems
18     /// Functions called from a function returning a `Result` may invoke a panicking macro. This is not checked.
19     ///
20     /// ### Example
21     /// ```rust
22     /// fn result_with_panic() -> Result<bool, String>
23     /// {
24     ///     panic!("error");
25     /// }
26     /// ```
27     /// Use instead:
28     /// ```rust
29     /// fn result_without_panic() -> Result<bool, String> {
30     ///     Err(String::from("error"))
31     /// }
32     /// ```
33     pub PANIC_IN_RESULT_FN,
34     restriction,
35     "functions of type `Result<..>` that contain `panic!()`, `todo!()`, `unreachable()`, `unimplemented()` or assertion"
36 }
37
38 declare_lint_pass!(PanicInResultFn  => [PANIC_IN_RESULT_FN]);
39
40 impl<'tcx> LateLintPass<'tcx> for PanicInResultFn {
41     fn check_fn(
42         &mut self,
43         cx: &LateContext<'tcx>,
44         fn_kind: FnKind<'tcx>,
45         _: &'tcx hir::FnDecl<'tcx>,
46         body: &'tcx hir::Body<'tcx>,
47         span: Span,
48         hir_id: hir::HirId,
49     ) {
50         if !matches!(fn_kind, FnKind::Closure) && is_type_diagnostic_item(cx, return_ty(cx, hir_id), sym::Result) {
51             lint_impl_body(cx, span, body);
52         }
53     }
54 }
55
56 fn lint_impl_body<'tcx>(cx: &LateContext<'tcx>, impl_span: Span, body: &'tcx hir::Body<'tcx>) {
57     let mut panics = find_macro_calls(
58         &[
59             "unimplemented",
60             "unreachable",
61             "panic",
62             "todo",
63             "assert",
64             "assert_eq",
65             "assert_ne",
66         ],
67         body,
68     );
69     panics.retain(|span| is_expn_of(*span, "debug_assert").is_none());
70     if !panics.is_empty() {
71         span_lint_and_then(
72             cx,
73             PANIC_IN_RESULT_FN,
74             impl_span,
75             "used `unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertion in a function that returns `Result`",
76             move |diag| {
77                 diag.help(
78                     "`unimplemented!()`, `unreachable!()`, `todo!()`, `panic!()` or assertions should not be used in a function that returns `Result` as `Result` is expected to return an error instead of crashing",
79                 );
80                 diag.span_note(panics, "return Err() instead of panicking");
81             },
82         );
83     }
84 }