rustdoc/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
14use rustc_data_structures::fx::FxIndexMap;
15use rustc_data_structures::unord::UnordSet;
16use rustc_hir::def_id::DefId;
17use thin_vec::ThinVec;
18
19use crate::clean;
20use crate::clean::{GenericArgs as PP, WherePredicate as WP};
21use crate::core::DocContext;
22
23pub(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.
28    let mut tybounds = FxIndexMap::default();
29    let mut lifetimes = Vec::new();
30    let mut equalities = Vec::new();
31
32    for clause in clauses {
33        match clause {
34            WP::BoundPredicate { ty, bounds, bound_params } => {
35                let (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    }
45
46    // Look for equality predicates on associated types that can be merged into
47    // general bound predicates.
48    equalities.retain(|(lhs, rhs)| {
49        let Some((ty, trait_did, name)) = lhs.projection() else {
50            return true;
51        };
52        let Some((bounds, _)) = tybounds.get_mut(ty) else { return true };
53        merge_bounds(cx, bounds, trait_did, name, rhs)
54    });
55
56    // And finally, let's reassemble everything
57    let 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}
69
70pub(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| {
78        let 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.
85        if !trait_is_same_or_supertrait(cx, trait_ref.trait_.def_id(), trait_did) {
86            return false;
87        }
88        let last = trait_ref.trait_.segments.last_mut().expect("segments were empty");
89
90        match 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 {
98                Some(o) => assert_eq!(&clean::Term::Type(o.as_ref().clone()), rhs),
99                None => {
100                    if *rhs != clean::Term::Type(clean::Type::Tuple(Vec::new())) {
101                        *output = Some(Box::new(rhs.ty().unwrap().clone()));
102                    }
103                }
104            },
105        };
106        true
107    })
108}
109
110fn trait_is_same_or_supertrait(cx: &DocContext<'_>, child: DefId, trait_: DefId) -> bool {
111    if child == trait_ {
112        return true;
113    }
114    let 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}
120
121pub(crate) fn sized_bounds(cx: &mut DocContext<'_>, generics: &mut clean::Generics) {
122    let mut sized_params = UnordSet::new();
123
124    // 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.
136    generics.where_predicates.retain(|pred| {
137        if 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);
141            false
142        } else {
143            true
144        }
145    });
146
147    // 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`.
149    for param in &generics.params {
150        if let clean::GenericParamDefKind::Type { .. } = param.kind
151            && !sized_params.contains(&param.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}
161
162/// 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) {
169    use clean::types::*;
170
171    let mut where_predicates = ThinVec::new();
172    for mut pred in generics.where_predicates.drain(..) {
173        if 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| &param.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| &param.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}