]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/clippy_lints/src/serde_api.rs
Rollup merge of #87910 - iago-lito:mark_unsafe_nonzero_arithmetics_as_const, r=joshtr...
[rust.git] / src / tools / clippy / clippy_lints / src / serde_api.rs
1 use clippy_utils::diagnostics::span_lint;
2 use clippy_utils::{get_trait_def_id, paths};
3 use rustc_hir::{Impl, Item, ItemKind};
4 use rustc_lint::{LateContext, LateLintPass};
5 use rustc_session::{declare_lint_pass, declare_tool_lint};
6
7 declare_clippy_lint! {
8     /// ### What it does
9     /// Checks for mis-uses of the serde API.
10     ///
11     /// ### Why is this bad?
12     /// Serde is very finnicky about how its API should be
13     /// used, but the type system can't be used to enforce it (yet?).
14     ///
15     /// ### Example
16     /// Implementing `Visitor::visit_string` but not
17     /// `Visitor::visit_str`.
18     pub SERDE_API_MISUSE,
19     correctness,
20     "various things that will negatively affect your serde experience"
21 }
22
23 declare_lint_pass!(SerdeApi => [SERDE_API_MISUSE]);
24
25 impl<'tcx> LateLintPass<'tcx> for SerdeApi {
26     fn check_item(&mut self, cx: &LateContext<'tcx>, item: &'tcx Item<'_>) {
27         if let ItemKind::Impl(Impl {
28             of_trait: Some(ref trait_ref),
29             items,
30             ..
31         }) = item.kind
32         {
33             let did = trait_ref.path.res.def_id();
34             if let Some(visit_did) = get_trait_def_id(cx, &paths::SERDE_DE_VISITOR) {
35                 if did == visit_did {
36                     let mut seen_str = None;
37                     let mut seen_string = None;
38                     for item in items {
39                         match &*item.ident.as_str() {
40                             "visit_str" => seen_str = Some(item.span),
41                             "visit_string" => seen_string = Some(item.span),
42                             _ => {},
43                         }
44                     }
45                     if let Some(span) = seen_string {
46                         if seen_str.is_none() {
47                             span_lint(
48                                 cx,
49                                 SERDE_API_MISUSE,
50                                 span,
51                                 "you should not implement `visit_string` without also implementing `visit_str`",
52                             );
53                         }
54                     }
55                 }
56             }
57         }
58     }
59 }