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!
1314use rustc_data_structures::fx::FxIndexMap;
15use rustc_data_structures::unord::UnordSet;
16use rustc_hir::def_id::DefId;
17use thin_vec::ThinVec;
1819use crate::clean;
20use crate::clean::{GenericArgs as PP, WherePredicate as WP};
21use crate::core::DocContext;
2223pub(crate) fn where_clauses(cx: &DocContext<'_>, clauses: ThinVec<WP>) -> ThinVec<WP> {
24// First, partition the where clause into its separate components.
25 //
26 // We use `FxIndexMap` so that the insertion order is preserved to prevent messing up to
27 // the order of the generated bounds.
28let mut tybounds = FxIndexMap::default();
29let mut lifetimes = Vec::new();
30let mut equalities = Vec::new();
3132for clause in clauses {
33match clause {
34 WP::BoundPredicate { ty, bounds, bound_params } => {
35let (b, p): &mut (Vec<_>, Vec<_>) = tybounds.entry(ty).or_default();
36 b.extend(bounds);
37 p.extend(bound_params);
38 }
39 WP::RegionPredicate { lifetime, bounds } => {
40 lifetimes.push((lifetime, bounds));
41 }
42 WP::EqPredicate { lhs, rhs } => equalities.push((lhs, rhs)),
43 }
44 }
4546// Look for equality predicates on associated types that can be merged into
47 // general bound predicates.
48equalities.retain(|(lhs, rhs)| {
49let Some((ty, trait_did, name)) = lhs.projection() else {
50return true;
51 };
52let Some((bounds, _)) = tybounds.get_mut(ty) else { return true };
53 merge_bounds(cx, bounds, trait_did, name, rhs)
54 });
5556// And finally, let's reassemble everything
57let mut clauses = ThinVec::with_capacity(lifetimes.len() + tybounds.len() + equalities.len());
58 clauses.extend(
59 lifetimes.into_iter().map(|(lt, bounds)| WP::RegionPredicate { lifetime: lt, bounds }),
60 );
61 clauses.extend(tybounds.into_iter().map(|(ty, (bounds, bound_params))| WP::BoundPredicate {
62 ty,
63 bounds,
64 bound_params,
65 }));
66 clauses.extend(equalities.into_iter().map(|(lhs, rhs)| WP::EqPredicate { lhs, rhs }));
67 clauses
68}
6970pub(crate) fn merge_bounds(
71 cx: &clean::DocContext<'_>,
72 bounds: &mut [clean::GenericBound],
73 trait_did: DefId,
74 assoc: clean::PathSegment,
75 rhs: &clean::Term,
76) -> bool {
77 !bounds.iter_mut().any(|b| {
78let trait_ref = match *b {
79 clean::GenericBound::TraitBound(ref mut tr, _) => tr,
80 clean::GenericBound::Outlives(..) | clean::GenericBound::Use(_) => return false,
81 };
82// If this QPath's trait `trait_did` is the same as, or a supertrait
83 // of, the bound's trait `did` then we can keep going, otherwise
84 // this is just a plain old equality bound.
85if !trait_is_same_or_supertrait(cx, trait_ref.trait_.def_id(), trait_did) {
86return false;
87 }
88let last = trait_ref.trait_.segments.last_mut().expect("segments were empty");
8990match last.args {
91 PP::AngleBracketed { ref mut constraints, .. } => {
92 constraints.push(clean::AssocItemConstraint {
93 assoc: assoc.clone(),
94 kind: clean::AssocItemConstraintKind::Equality { term: rhs.clone() },
95 });
96 }
97 PP::Parenthesized { ref mut output, .. } => match output {
98Some(o) => assert_eq!(&clean::Term::Type(o.as_ref().clone()), rhs),
99None => {
100if *rhs != clean::Term::Type(clean::Type::Tuple(Vec::new())) {
101*output = Some(Box::new(rhs.ty().unwrap().clone()));
102 }
103 }
104 },
105 };
106true
107})
108}
109110fn trait_is_same_or_supertrait(cx: &DocContext<'_>, child: DefId, trait_: DefId) -> bool {
111if child == trait_ {
112return true;
113 }
114let predicates = cx.tcx.explicit_super_predicates_of(child);
115 predicates
116 .iter_identity_copied()
117 .filter_map(|(pred, _)| Some(pred.as_trait_clause()?.def_id()))
118 .any(|did| trait_is_same_or_supertrait(cx, did, trait_))
119}
120121pub(crate) fn sized_bounds(cx: &mut DocContext<'_>, generics: &mut clean::Generics) {
122let mut sized_params = UnordSet::new();
123124// In the surface language, all type parameters except `Self` have an
125 // implicit `Sized` bound unless removed with `?Sized`.
126 // However, in the list of where-predicates below, `Sized` appears like a
127 // normal bound: It's either present (the type is sized) or
128 // absent (the type might be unsized) but never *maybe* (i.e. `?Sized`).
129 //
130 // This is unsuitable for rendering.
131 // Thus, as a first step remove all `Sized` bounds that should be implicit.
132 //
133 // Note that associated types also have an implicit `Sized` bound but we
134 // don't actually know the set of associated types right here so that
135 // should be handled when cleaning associated types.
136generics.where_predicates.retain(|pred| {
137if let WP::BoundPredicate { ty: clean::Generic(param), bounds, .. } = pred
138 && bounds.iter().any(|b| b.is_sized_bound(cx))
139 {
140 sized_params.insert(*param);
141false
142} else {
143true
144}
145 });
146147// As a final step, go through the type parameters again and insert a
148 // `?Sized` bound for each one we didn't find to be `Sized`.
149for param in &generics.params {
150if let clean::GenericParamDefKind::Type { .. } = param.kind
151 && !sized_params.contains(¶m.name)
152 {
153 generics.where_predicates.push(WP::BoundPredicate {
154 ty: clean::Type::Generic(param.name),
155 bounds: vec![clean::GenericBound::maybe_sized(cx)],
156 bound_params: Vec::new(),
157 })
158 }
159 }
160}
161162/// Move bounds that are (likely) directly attached to generic parameters from the where-clause to
163/// the respective parameter.
164///
165/// There is no guarantee that this is what the user actually wrote but we have no way of knowing.
166// FIXME(fmease): It'd make a lot of sense to just incorporate this logic into `clean_ty_generics`
167// making every of its users benefit from it.
168pub(crate) fn move_bounds_to_generic_parameters(generics: &mut clean::Generics) {
169use clean::types::*;
170171let mut where_predicates = ThinVec::new();
172for mut pred in generics.where_predicates.drain(..) {
173if let WherePredicate::BoundPredicate { ty: Generic(arg), bounds, .. } = &mut pred
174 && let Some(GenericParamDef {
175 kind: GenericParamDefKind::Type { bounds: param_bounds, .. },
176 ..
177 }) = generics.params.iter_mut().find(|param| ¶m.name == arg)
178 {
179 param_bounds.extend(bounds.drain(..));
180 } else if let WherePredicate::RegionPredicate { lifetime: Lifetime(arg), bounds } =
181&mut pred
182 && let Some(GenericParamDef {
183 kind: GenericParamDefKind::Lifetime { outlives: param_bounds },
184 ..
185 }) = generics.params.iter_mut().find(|param| ¶m.name == arg)
186 {
187 param_bounds.extend(bounds.drain(..).map(|bound| match bound {
188 GenericBound::Outlives(lifetime) => lifetime,
189_ => unreachable!(),
190 }));
191 } else {
192 where_predicates.push(pred);
193 }
194 }
195 generics.where_predicates = where_predicates;
196}