|
| 1 | +//! headers are sets of consecutive keywords and tokens, such as |
| 2 | +//! `pub const unsafe fn foo` and `pub(crate) unsafe trait Bar`. |
| 3 | +//! |
| 4 | +//! This module contains general logic for formatting such headers, |
| 5 | +//! where they are always placed on a single line except when there |
| 6 | +//! are comments between parts of the header. |
| 7 | +
|
| 8 | +use std::borrow::Cow; |
| 9 | + |
| 10 | +use rustc_ast as ast; |
| 11 | +use rustc_span::symbol::Ident; |
| 12 | +use rustc_span::Span; |
| 13 | + |
| 14 | +use crate::comment::combine_strs_with_missing_comments; |
| 15 | +use crate::rewrite::RewriteContext; |
| 16 | +use crate::shape::Shape; |
| 17 | +use crate::utils::rewrite_ident; |
| 18 | + |
| 19 | +pub(crate) fn format_header( |
| 20 | + context: &RewriteContext<'_>, |
| 21 | + shape: Shape, |
| 22 | + parts: Vec<HeaderPart>, |
| 23 | +) -> String { |
| 24 | + debug!(?parts, "format_header"); |
| 25 | + let shape = shape.infinite_width(); |
| 26 | + |
| 27 | + // Empty `HeaderPart`s are ignored. |
| 28 | + let mut parts = parts.into_iter().filter(|x| !x.snippet.is_empty()); |
| 29 | + let Some(part) = parts.next() else { |
| 30 | + return String::new(); |
| 31 | + }; |
| 32 | + |
| 33 | + let mut result = part.snippet.into_owned(); |
| 34 | + let mut span = part.span; |
| 35 | + |
| 36 | + for part in parts { |
| 37 | + debug!(?result, "before combine"); |
| 38 | + result = combine_strs_with_missing_comments( |
| 39 | + context, |
| 40 | + &result, |
| 41 | + &part.snippet, |
| 42 | + span.between(part.span), |
| 43 | + shape, |
| 44 | + true, |
| 45 | + ) |
| 46 | + .unwrap_or_else(|| format!("{} {}", &result, part.snippet)); |
| 47 | + debug!(?result); |
| 48 | + span = part.span; |
| 49 | + } |
| 50 | + |
| 51 | + result |
| 52 | +} |
| 53 | + |
| 54 | +#[derive(Debug)] |
| 55 | +pub(crate) struct HeaderPart { |
| 56 | + /// snippet of this part without surrounding space |
| 57 | + snippet: Cow<'static, str>, |
| 58 | + span: Span, |
| 59 | +} |
| 60 | + |
| 61 | +impl HeaderPart { |
| 62 | + pub(crate) fn new(snippet: impl Into<Cow<'static, str>>, span: Span) -> Self { |
| 63 | + Self { |
| 64 | + snippet: snippet.into(), |
| 65 | + span, |
| 66 | + } |
| 67 | + } |
| 68 | + |
| 69 | + pub(crate) fn ident(context: &RewriteContext<'_>, ident: Ident) -> Self { |
| 70 | + Self { |
| 71 | + snippet: rewrite_ident(context, ident).to_owned().into(), |
| 72 | + span: ident.span, |
| 73 | + } |
| 74 | + } |
| 75 | + |
| 76 | + pub(crate) fn visibility(context: &RewriteContext<'_>, vis: &ast::Visibility) -> Self { |
| 77 | + let snippet = match vis.kind { |
| 78 | + ast::VisibilityKind::Public => Cow::from("pub"), |
| 79 | + ast::VisibilityKind::Inherited => Cow::from(""), |
| 80 | + ast::VisibilityKind::Restricted { ref path, .. } => { |
| 81 | + let ast::Path { ref segments, .. } = **path; |
| 82 | + let mut segments_iter = |
| 83 | + segments.iter().map(|seg| rewrite_ident(context, seg.ident)); |
| 84 | + if path.is_global() { |
| 85 | + segments_iter |
| 86 | + .next() |
| 87 | + .expect("Non-global path in pub(restricted)?"); |
| 88 | + } |
| 89 | + let is_keyword = |s: &str| s == "crate" || s == "self" || s == "super"; |
| 90 | + let path = segments_iter.collect::<Vec<_>>().join("::"); |
| 91 | + let in_str = if is_keyword(&path) { "" } else { "in " }; |
| 92 | + |
| 93 | + Cow::from(format!("pub({}{})", in_str, path)) |
| 94 | + } |
| 95 | + }; |
| 96 | + |
| 97 | + HeaderPart { |
| 98 | + snippet, |
| 99 | + span: vis.span, |
| 100 | + } |
| 101 | + } |
| 102 | +} |
0 commit comments