]> git.lizzy.rs Git - rust.git/blob - src/librustdoc/clean/simplify.rs
Rollup merge of #103878 - Mark-Simulacrum:fix-stable-ci-download, r=jyn514
[rust.git] / src / librustdoc / clean / simplify.rs
1 //! Simplification of where-clauses and parameter bounds into a prettier and
2 //! more canonical form.
3 //!
4 //! Currently all cross-crate-inlined function use `rustc_middle::ty` to reconstruct
5 //! the AST (e.g., see all of `clean::inline`), but this is not always a
6 //! non-lossy transformation. The current format of storage for where-clauses
7 //! for functions and such is simply a list of predicates. One example of this
8 //! is that the AST predicate of: `where T: Trait<Foo = Bar>` is encoded as:
9 //! `where T: Trait, <T as Trait>::Foo = Bar`.
10 //!
11 //! This module attempts to reconstruct the original where and/or parameter
12 //! bounds by special casing scenarios such as these. Fun!
13
14 use rustc_data_structures::fx::FxIndexMap;
15 use rustc_hir::def_id::DefId;
16 use rustc_middle::ty;
17 use thin_vec::ThinVec;
18
19 use crate::clean;
20 use crate::clean::GenericArgs as PP;
21 use crate::clean::WherePredicate as WP;
22 use crate::core::DocContext;
23
24 pub(crate) fn where_clauses(cx: &DocContext<'_>, clauses: Vec<WP>) -> ThinVec<WP> {
25     // First, partition the where clause into its separate components.
26     //
27     // We use `FxIndexMap` so that the insertion order is preserved to prevent messing up to
28     // the order of the generated bounds.
29     let mut tybounds = FxIndexMap::default();
30     let mut lifetimes = Vec::new();
31     let mut equalities = Vec::new();
32
33     for clause in clauses {
34         match clause {
35             WP::BoundPredicate { ty, bounds, bound_params } => {
36                 let (b, p): &mut (Vec<_>, Vec<_>) = tybounds.entry(ty).or_default();
37                 b.extend(bounds);
38                 p.extend(bound_params);
39             }
40             WP::RegionPredicate { lifetime, bounds } => {
41                 lifetimes.push((lifetime, bounds));
42             }
43             WP::EqPredicate { lhs, rhs, bound_params } => equalities.push((lhs, rhs, bound_params)),
44         }
45     }
46
47     // Look for equality predicates on associated types that can be merged into
48     // general bound predicates.
49     equalities.retain(|&(ref lhs, ref rhs, ref bound_params)| {
50         let Some((ty, trait_did, name)) = lhs.projection() else { return true; };
51         let Some((bounds, _)) = tybounds.get_mut(ty) else { return true };
52         let bound_params = bound_params
53             .into_iter()
54             .map(|param| clean::GenericParamDef {
55                 name: param.0,
56                 kind: clean::GenericParamDefKind::Lifetime { outlives: Vec::new() },
57             })
58             .collect();
59         merge_bounds(cx, bounds, bound_params, trait_did, name, rhs)
60     });
61
62     // And finally, let's reassemble everything
63     let mut clauses = ThinVec::with_capacity(lifetimes.len() + tybounds.len() + equalities.len());
64     clauses.extend(
65         lifetimes.into_iter().map(|(lt, bounds)| WP::RegionPredicate { lifetime: lt, bounds }),
66     );
67     clauses.extend(tybounds.into_iter().map(|(ty, (bounds, bound_params))| WP::BoundPredicate {
68         ty,
69         bounds,
70         bound_params,
71     }));
72     clauses.extend(equalities.into_iter().map(|(lhs, rhs, bound_params)| WP::EqPredicate {
73         lhs,
74         rhs,
75         bound_params,
76     }));
77     clauses
78 }
79
80 pub(crate) fn merge_bounds(
81     cx: &clean::DocContext<'_>,
82     bounds: &mut Vec<clean::GenericBound>,
83     mut bound_params: Vec<clean::GenericParamDef>,
84     trait_did: DefId,
85     assoc: clean::PathSegment,
86     rhs: &clean::Term,
87 ) -> bool {
88     !bounds.iter_mut().any(|b| {
89         let trait_ref = match *b {
90             clean::GenericBound::TraitBound(ref mut tr, _) => tr,
91             clean::GenericBound::Outlives(..) => return false,
92         };
93         // If this QPath's trait `trait_did` is the same as, or a supertrait
94         // of, the bound's trait `did` then we can keep going, otherwise
95         // this is just a plain old equality bound.
96         if !trait_is_same_or_supertrait(cx, trait_ref.trait_.def_id(), trait_did) {
97             return false;
98         }
99         let last = trait_ref.trait_.segments.last_mut().expect("segments were empty");
100
101         trait_ref.generic_params.append(&mut bound_params);
102         // Since the parameters (probably) originate from `tcx.collect_*_late_bound_regions` which
103         // returns a hash set, sort them alphabetically to guarantee a stable and deterministic
104         // output (and to fully deduplicate them).
105         trait_ref.generic_params.sort_unstable_by(|p, q| p.name.as_str().cmp(q.name.as_str()));
106         trait_ref.generic_params.dedup_by_key(|p| p.name);
107
108         match last.args {
109             PP::AngleBracketed { ref mut bindings, .. } => {
110                 bindings.push(clean::TypeBinding {
111                     assoc: assoc.clone(),
112                     kind: clean::TypeBindingKind::Equality { term: rhs.clone() },
113                 });
114             }
115             PP::Parenthesized { ref mut output, .. } => match output {
116                 Some(o) => assert_eq!(&clean::Term::Type(o.as_ref().clone()), rhs),
117                 None => {
118                     if *rhs != clean::Term::Type(clean::Type::Tuple(Vec::new())) {
119                         *output = Some(Box::new(rhs.ty().unwrap().clone()));
120                     }
121                 }
122             },
123         };
124         true
125     })
126 }
127
128 fn trait_is_same_or_supertrait(cx: &DocContext<'_>, child: DefId, trait_: DefId) -> bool {
129     if child == trait_ {
130         return true;
131     }
132     let predicates = cx.tcx.super_predicates_of(child);
133     debug_assert!(cx.tcx.generics_of(child).has_self);
134     let self_ty = cx.tcx.types.self_param;
135     predicates
136         .predicates
137         .iter()
138         .filter_map(|(pred, _)| {
139             if let ty::PredicateKind::Trait(pred) = pred.kind().skip_binder() {
140                 if pred.trait_ref.self_ty() == self_ty { Some(pred.def_id()) } else { None }
141             } else {
142                 None
143             }
144         })
145         .any(|did| trait_is_same_or_supertrait(cx, did, trait_))
146 }