rustc_expand/
proc_macro_server.rs

1use std::ops::{Bound, Range};
2
3use ast::token::IdentIsRaw;
4use rustc_ast as ast;
5use rustc_ast::token;
6use rustc_ast::tokenstream::{self, DelimSpacing, Spacing, TokenStream};
7use rustc_ast::util::literal::escape_byte_str_symbol;
8use rustc_ast_pretty::pprust;
9use rustc_data_structures::fx::FxHashMap;
10use rustc_errors::{Diag, ErrorGuaranteed, MultiSpan, PResult};
11use rustc_parse::lexer::{StripTokens, nfc_normalize};
12use rustc_parse::parser::Parser;
13use rustc_parse::{exp, new_parser_from_source_str, source_str_to_stream, unwrap_or_emit_fatal};
14use rustc_proc_macro::bridge::{
15    DelimSpan, Diagnostic, ExpnGlobals, Group, Ident, LitKind, Literal, Punct, TokenTree, server,
16};
17use rustc_proc_macro::{Delimiter, Level};
18use rustc_session::parse::ParseSess;
19use rustc_span::def_id::CrateNum;
20use rustc_span::{BytePos, FileName, Pos, Span, Symbol, sym};
21use smallvec::{SmallVec, smallvec};
22
23use crate::base::ExtCtxt;
24
25trait FromInternal<T> {
26    fn from_internal(x: T) -> Self;
27}
28
29trait ToInternal<T> {
30    fn to_internal(self) -> T;
31}
32
33impl FromInternal<token::Delimiter> for Delimiter {
34    fn from_internal(delim: token::Delimiter) -> Delimiter {
35        match delim {
36            token::Delimiter::Parenthesis => Delimiter::Parenthesis,
37            token::Delimiter::Brace => Delimiter::Brace,
38            token::Delimiter::Bracket => Delimiter::Bracket,
39            token::Delimiter::Invisible(_) => Delimiter::None,
40        }
41    }
42}
43
44impl ToInternal<token::Delimiter> for Delimiter {
45    fn to_internal(self) -> token::Delimiter {
46        match self {
47            Delimiter::Parenthesis => token::Delimiter::Parenthesis,
48            Delimiter::Brace => token::Delimiter::Brace,
49            Delimiter::Bracket => token::Delimiter::Bracket,
50            Delimiter::None => token::Delimiter::Invisible(token::InvisibleOrigin::ProcMacro),
51        }
52    }
53}
54
55impl FromInternal<token::LitKind> for LitKind {
56    fn from_internal(kind: token::LitKind) -> Self {
57        match kind {
58            token::Byte => LitKind::Byte,
59            token::Char => LitKind::Char,
60            token::Integer => LitKind::Integer,
61            token::Float => LitKind::Float,
62            token::Str => LitKind::Str,
63            token::StrRaw(n) => LitKind::StrRaw(n),
64            token::ByteStr => LitKind::ByteStr,
65            token::ByteStrRaw(n) => LitKind::ByteStrRaw(n),
66            token::CStr => LitKind::CStr,
67            token::CStrRaw(n) => LitKind::CStrRaw(n),
68            token::Err(_guar) => {
69                // This is the only place a `rustc_proc_macro::bridge::LitKind::ErrWithGuar`
70                // is constructed. Note that an `ErrorGuaranteed` is available,
71                // as required. See the comment in `to_internal`.
72                LitKind::ErrWithGuar
73            }
74            token::Bool => unreachable!(),
75        }
76    }
77}
78
79impl ToInternal<token::LitKind> for LitKind {
80    fn to_internal(self) -> token::LitKind {
81        match self {
82            LitKind::Byte => token::Byte,
83            LitKind::Char => token::Char,
84            LitKind::Integer => token::Integer,
85            LitKind::Float => token::Float,
86            LitKind::Str => token::Str,
87            LitKind::StrRaw(n) => token::StrRaw(n),
88            LitKind::ByteStr => token::ByteStr,
89            LitKind::ByteStrRaw(n) => token::ByteStrRaw(n),
90            LitKind::CStr => token::CStr,
91            LitKind::CStrRaw(n) => token::CStrRaw(n),
92            LitKind::ErrWithGuar => {
93                // This is annoying but valid. `LitKind::ErrWithGuar` would
94                // have an `ErrorGuaranteed` except that type isn't available
95                // in that crate. So we have to fake one. And we don't want to
96                // use a delayed bug because there might be lots of these,
97                // which would be expensive.
98                #[allow(deprecated)]
99                let guar = ErrorGuaranteed::unchecked_error_guaranteed();
100                token::Err(guar)
101            }
102        }
103    }
104}
105
106impl FromInternal<(TokenStream, &mut Rustc<'_, '_>)> for Vec<TokenTree<TokenStream, Span, Symbol>> {
107    fn from_internal((stream, rustc): (TokenStream, &mut Rustc<'_, '_>)) -> Self {
108        use rustc_ast::token::*;
109
110        // Estimate the capacity as `stream.len()` rounded up to the next power
111        // of two to limit the number of required reallocations.
112        let mut trees = Vec::with_capacity(stream.len().next_power_of_two());
113        let mut iter = stream.iter();
114
115        while let Some(tree) = iter.next() {
116            let (Token { kind, span }, joint) = match tree.clone() {
117                tokenstream::TokenTree::Delimited(span, _, mut delim, mut stream) => {
118                    // We used to have an alternative behaviour for crates that
119                    // needed it: a hack used to pass AST fragments to
120                    // attribute and derive macros as a single nonterminal
121                    // token instead of a token stream. Such token needs to be
122                    // "unwrapped" and not represented as a delimited group. We
123                    // had a lint for a long time, but now we just emit a hard
124                    // error. Eventually we might remove the special case hard
125                    // error check altogether. See #73345.
126                    if let Delimiter::Invisible(InvisibleOrigin::MetaVar(kind)) = delim {
127                        crate::base::stream_pretty_printing_compatibility_hack(
128                            kind,
129                            &stream,
130                            rustc.psess(),
131                        );
132                    }
133
134                    // In `mk_delimited` we avoid nesting invisible delimited
135                    // of the same `MetaVarKind`. Here we do the same but
136                    // ignore the `MetaVarKind` because it is discarded when we
137                    // convert it to a `Group`.
138                    while let Delimiter::Invisible(InvisibleOrigin::MetaVar(_)) = delim {
139                        if stream.len() == 1
140                            && let tree = stream.iter().next().unwrap()
141                            && let tokenstream::TokenTree::Delimited(_, _, delim2, stream2) = tree
142                            && let Delimiter::Invisible(InvisibleOrigin::MetaVar(_)) = delim2
143                        {
144                            delim = *delim2;
145                            stream = stream2.clone();
146                        } else {
147                            break;
148                        }
149                    }
150
151                    trees.push(TokenTree::Group(Group {
152                        delimiter: rustc_proc_macro::Delimiter::from_internal(delim),
153                        stream: Some(stream),
154                        span: DelimSpan {
155                            open: span.open,
156                            close: span.close,
157                            entire: span.entire(),
158                        },
159                    }));
160                    continue;
161                }
162                tokenstream::TokenTree::Token(token, spacing) => {
163                    // Do not be tempted to check here that the `spacing`
164                    // values are "correct" w.r.t. the token stream (e.g. that
165                    // `Spacing::Joint` is actually followed by a `Punct` token
166                    // tree). Because the problem in #76399 was introduced that
167                    // way.
168                    //
169                    // This is where the `Hidden` in `JointHidden` applies,
170                    // because the jointness is effectively hidden from proc
171                    // macros.
172                    let joint = match spacing {
173                        Spacing::Alone | Spacing::JointHidden => false,
174                        Spacing::Joint => true,
175                    };
176                    (token, joint)
177                }
178            };
179
180            // Split the operator into one or more `Punct`s, one per character.
181            // The final one inherits the jointness of the original token. Any
182            // before that get `joint = true`.
183            let mut op = |s: &str| {
184                assert!(s.is_ascii());
185                trees.extend(s.bytes().enumerate().map(|(i, ch)| {
186                    let is_final = i == s.len() - 1;
187                    // Split the token span into single chars. Unless the span
188                    // is an unusual one, e.g. due to proc macro expansion. We
189                    // determine this by assuming any span with a length that
190                    // matches the operator length is a normal one, and any
191                    // span with a different length is an unusual one.
192                    let span = if (span.hi() - span.lo()).to_usize() == s.len() {
193                        let lo = span.lo() + BytePos::from_usize(i);
194                        let hi = lo + BytePos::from_usize(1);
195                        span.with_lo(lo).with_hi(hi)
196                    } else {
197                        span
198                    };
199                    let joint = if is_final { joint } else { true };
200                    TokenTree::Punct(Punct { ch, joint, span })
201                }));
202            };
203
204            match kind {
205                Eq => op("="),
206                Lt => op("<"),
207                Le => op("<="),
208                EqEq => op("=="),
209                Ne => op("!="),
210                Ge => op(">="),
211                Gt => op(">"),
212                AndAnd => op("&&"),
213                OrOr => op("||"),
214                Bang => op("!"),
215                Tilde => op("~"),
216                Plus => op("+"),
217                Minus => op("-"),
218                Star => op("*"),
219                Slash => op("/"),
220                Percent => op("%"),
221                Caret => op("^"),
222                And => op("&"),
223                Or => op("|"),
224                Shl => op("<<"),
225                Shr => op(">>"),
226                PlusEq => op("+="),
227                MinusEq => op("-="),
228                StarEq => op("*="),
229                SlashEq => op("/="),
230                PercentEq => op("%="),
231                CaretEq => op("^="),
232                AndEq => op("&="),
233                OrEq => op("|="),
234                ShlEq => op("<<="),
235                ShrEq => op(">>="),
236                At => op("@"),
237                Dot => op("."),
238                DotDot => op(".."),
239                DotDotDot => op("..."),
240                DotDotEq => op("..="),
241                Comma => op(","),
242                Semi => op(";"),
243                Colon => op(":"),
244                PathSep => op("::"),
245                RArrow => op("->"),
246                LArrow => op("<-"),
247                FatArrow => op("=>"),
248                Pound => op("#"),
249                Dollar => op("$"),
250                Question => op("?"),
251                SingleQuote => op("'"),
252
253                Ident(sym, is_raw) => trees.push(TokenTree::Ident(Ident {
254                    sym,
255                    is_raw: matches!(is_raw, IdentIsRaw::Yes),
256                    span,
257                })),
258                NtIdent(ident, is_raw) => trees.push(TokenTree::Ident(Ident {
259                    sym: ident.name,
260                    is_raw: matches!(is_raw, IdentIsRaw::Yes),
261                    span: ident.span,
262                })),
263
264                Lifetime(name, is_raw) => {
265                    let ident = rustc_span::Ident::new(name, span).without_first_quote();
266                    trees.extend([
267                        TokenTree::Punct(Punct { ch: b'\'', joint: true, span }),
268                        TokenTree::Ident(Ident {
269                            sym: ident.name,
270                            is_raw: matches!(is_raw, IdentIsRaw::Yes),
271                            span,
272                        }),
273                    ]);
274                }
275                NtLifetime(ident, is_raw) => {
276                    let stream =
277                        TokenStream::token_alone(token::Lifetime(ident.name, is_raw), ident.span);
278                    trees.push(TokenTree::Group(Group {
279                        delimiter: rustc_proc_macro::Delimiter::None,
280                        stream: Some(stream),
281                        span: DelimSpan::from_single(span),
282                    }))
283                }
284
285                Literal(token::Lit { kind, symbol, suffix }) => {
286                    trees.push(TokenTree::Literal(self::Literal {
287                        kind: FromInternal::from_internal(kind),
288                        symbol,
289                        suffix,
290                        span,
291                    }));
292                }
293                DocComment(_, attr_style, data) => {
294                    let mut escaped = String::new();
295                    for ch in data.as_str().chars() {
296                        escaped.extend(ch.escape_debug());
297                    }
298                    let stream = [
299                        Ident(sym::doc, IdentIsRaw::No),
300                        Eq,
301                        TokenKind::lit(token::Str, Symbol::intern(&escaped), None),
302                    ]
303                    .into_iter()
304                    .map(|kind| tokenstream::TokenTree::token_alone(kind, span))
305                    .collect();
306                    trees.push(TokenTree::Punct(Punct { ch: b'#', joint: false, span }));
307                    if attr_style == ast::AttrStyle::Inner {
308                        trees.push(TokenTree::Punct(Punct { ch: b'!', joint: false, span }));
309                    }
310                    trees.push(TokenTree::Group(Group {
311                        delimiter: rustc_proc_macro::Delimiter::Bracket,
312                        stream: Some(stream),
313                        span: DelimSpan::from_single(span),
314                    }));
315                }
316
317                OpenParen | CloseParen | OpenBrace | CloseBrace | OpenBracket | CloseBracket
318                | OpenInvisible(_) | CloseInvisible(_) | Eof => unreachable!(),
319            }
320        }
321        trees
322    }
323}
324
325// We use a `SmallVec` because the output size is always one or two `TokenTree`s.
326impl ToInternal<SmallVec<[tokenstream::TokenTree; 2]>>
327    for (TokenTree<TokenStream, Span, Symbol>, &mut Rustc<'_, '_>)
328{
329    fn to_internal(self) -> SmallVec<[tokenstream::TokenTree; 2]> {
330        use rustc_ast::token::*;
331
332        // The code below is conservative, using `token_alone`/`Spacing::Alone`
333        // in most places. It's hard in general to do better when working at
334        // the token level. When the resulting code is pretty-printed by
335        // `print_tts` the `space_between` function helps avoid a lot of
336        // unnecessary whitespace, so the results aren't too bad.
337        let (tree, rustc) = self;
338        match tree {
339            TokenTree::Punct(Punct { ch, joint, span }) => {
340                let kind = match ch {
341                    b'=' => Eq,
342                    b'<' => Lt,
343                    b'>' => Gt,
344                    b'!' => Bang,
345                    b'~' => Tilde,
346                    b'+' => Plus,
347                    b'-' => Minus,
348                    b'*' => Star,
349                    b'/' => Slash,
350                    b'%' => Percent,
351                    b'^' => Caret,
352                    b'&' => And,
353                    b'|' => Or,
354                    b'@' => At,
355                    b'.' => Dot,
356                    b',' => Comma,
357                    b';' => Semi,
358                    b':' => Colon,
359                    b'#' => Pound,
360                    b'$' => Dollar,
361                    b'?' => Question,
362                    b'\'' => SingleQuote,
363                    _ => unreachable!(),
364                };
365                // We never produce `token::Spacing::JointHidden` here, which
366                // means the pretty-printing of code produced by proc macros is
367                // ugly, with lots of whitespace between tokens. This is
368                // unavoidable because `proc_macro::Spacing` only applies to
369                // `Punct` token trees.
370                smallvec![if joint {
371                    tokenstream::TokenTree::token_joint(kind, span)
372                } else {
373                    tokenstream::TokenTree::token_alone(kind, span)
374                }]
375            }
376            TokenTree::Group(Group { delimiter, stream, span: DelimSpan { open, close, .. } }) => {
377                smallvec![tokenstream::TokenTree::Delimited(
378                    tokenstream::DelimSpan { open, close },
379                    DelimSpacing::new(Spacing::Alone, Spacing::Alone),
380                    delimiter.to_internal(),
381                    stream.unwrap_or_default(),
382                )]
383            }
384            TokenTree::Ident(self::Ident { sym, is_raw, span }) => {
385                rustc.psess().symbol_gallery.insert(sym, span);
386                smallvec![tokenstream::TokenTree::token_alone(Ident(sym, is_raw.into()), span)]
387            }
388            TokenTree::Literal(self::Literal {
389                kind: self::LitKind::Integer,
390                symbol,
391                suffix,
392                span,
393            }) if let Some(symbol) = symbol.as_str().strip_prefix('-') => {
394                let symbol = Symbol::intern(symbol);
395                let integer = TokenKind::lit(token::Integer, symbol, suffix);
396                let a = tokenstream::TokenTree::token_joint_hidden(Minus, span);
397                let b = tokenstream::TokenTree::token_alone(integer, span);
398                smallvec![a, b]
399            }
400            TokenTree::Literal(self::Literal {
401                kind: self::LitKind::Float,
402                symbol,
403                suffix,
404                span,
405            }) if let Some(symbol) = symbol.as_str().strip_prefix('-') => {
406                let symbol = Symbol::intern(symbol);
407                let float = TokenKind::lit(token::Float, symbol, suffix);
408                let a = tokenstream::TokenTree::token_joint_hidden(Minus, span);
409                let b = tokenstream::TokenTree::token_alone(float, span);
410                smallvec![a, b]
411            }
412            TokenTree::Literal(self::Literal { kind, symbol, suffix, span }) => {
413                smallvec![tokenstream::TokenTree::token_alone(
414                    TokenKind::lit(kind.to_internal(), symbol, suffix),
415                    span,
416                )]
417            }
418        }
419    }
420}
421
422impl ToInternal<rustc_errors::Level> for Level {
423    fn to_internal(self) -> rustc_errors::Level {
424        match self {
425            Level::Error => rustc_errors::Level::Error,
426            Level::Warning => rustc_errors::Level::Warning,
427            Level::Note => rustc_errors::Level::Note,
428            Level::Help => rustc_errors::Level::Help,
429            _ => unreachable!("unknown proc_macro::Level variant: {:?}", self),
430        }
431    }
432}
433
434pub(crate) struct FreeFunctions;
435
436pub(crate) struct Rustc<'a, 'b> {
437    ecx: &'a mut ExtCtxt<'b>,
438    def_site: Span,
439    call_site: Span,
440    mixed_site: Span,
441    krate: CrateNum,
442    rebased_spans: FxHashMap<usize, Span>,
443}
444
445impl<'a, 'b> Rustc<'a, 'b> {
446    pub(crate) fn new(ecx: &'a mut ExtCtxt<'b>) -> Self {
447        let expn_data = ecx.current_expansion.id.expn_data();
448        Rustc {
449            def_site: ecx.with_def_site_ctxt(expn_data.def_site),
450            call_site: ecx.with_call_site_ctxt(expn_data.call_site),
451            mixed_site: ecx.with_mixed_site_ctxt(expn_data.call_site),
452            krate: expn_data.macro_def_id.unwrap().krate,
453            rebased_spans: FxHashMap::default(),
454            ecx,
455        }
456    }
457
458    fn psess(&self) -> &ParseSess {
459        self.ecx.psess()
460    }
461}
462
463impl server::Types for Rustc<'_, '_> {
464    type FreeFunctions = FreeFunctions;
465    type TokenStream = TokenStream;
466    type Span = Span;
467    type Symbol = Symbol;
468}
469
470impl server::FreeFunctions for Rustc<'_, '_> {
471    fn injected_env_var(&mut self, var: &str) -> Option<String> {
472        self.ecx.sess.opts.logical_env.get(var).cloned()
473    }
474
475    fn track_env_var(&mut self, var: &str, value: Option<&str>) {
476        self.psess()
477            .env_depinfo
478            .borrow_mut()
479            .insert((Symbol::intern(var), value.map(Symbol::intern)));
480    }
481
482    fn track_path(&mut self, path: &str) {
483        self.psess().file_depinfo.borrow_mut().insert(Symbol::intern(path));
484    }
485
486    fn literal_from_str(&mut self, s: &str) -> Result<Literal<Self::Span, Self::Symbol>, ()> {
487        let name = FileName::proc_macro_source_code(s);
488
489        let mut parser = unwrap_or_emit_fatal(new_parser_from_source_str(
490            self.psess(),
491            name,
492            s.to_owned(),
493            StripTokens::Nothing,
494        ));
495
496        let first_span = parser.token.span.data();
497        let minus_present = parser.eat(exp!(Minus));
498
499        let lit_span = parser.token.span.data();
500        let token::Literal(mut lit) = parser.token.kind else {
501            return Err(());
502        };
503
504        // Check no comment or whitespace surrounding the (possibly negative)
505        // literal, or more tokens after it.
506        if (lit_span.hi.0 - first_span.lo.0) as usize != s.len() {
507            return Err(());
508        }
509
510        if minus_present {
511            // If minus is present, check no comment or whitespace in between it
512            // and the literal token.
513            if first_span.hi.0 != lit_span.lo.0 {
514                return Err(());
515            }
516
517            // Check literal is a kind we allow to be negated in a proc macro token.
518            match lit.kind {
519                token::LitKind::Bool
520                | token::LitKind::Byte
521                | token::LitKind::Char
522                | token::LitKind::Str
523                | token::LitKind::StrRaw(_)
524                | token::LitKind::ByteStr
525                | token::LitKind::ByteStrRaw(_)
526                | token::LitKind::CStr
527                | token::LitKind::CStrRaw(_)
528                | token::LitKind::Err(_) => return Err(()),
529                token::LitKind::Integer | token::LitKind::Float => {}
530            }
531
532            // Synthesize a new symbol that includes the minus sign.
533            let symbol = Symbol::intern(&s[..1 + lit.symbol.as_str().len()]);
534            lit = token::Lit::new(lit.kind, symbol, lit.suffix);
535        }
536        let token::Lit { kind, symbol, suffix } = lit;
537        Ok(Literal {
538            kind: FromInternal::from_internal(kind),
539            symbol,
540            suffix,
541            span: self.call_site,
542        })
543    }
544
545    fn emit_diagnostic(&mut self, diagnostic: Diagnostic<Self::Span>) {
546        let message = rustc_errors::DiagMessage::from(diagnostic.message);
547        let mut diag: Diag<'_, ()> =
548            Diag::new(self.psess().dcx(), diagnostic.level.to_internal(), message);
549        diag.span(MultiSpan::from_spans(diagnostic.spans));
550        for child in diagnostic.children {
551            // This message comes from another diagnostic, and we are just reconstructing the
552            // diagnostic, so there's no need for translation.
553            #[allow(rustc::untranslatable_diagnostic)]
554            diag.sub(child.level.to_internal(), child.message, MultiSpan::from_spans(child.spans));
555        }
556        diag.emit();
557    }
558}
559
560impl server::TokenStream for Rustc<'_, '_> {
561    fn is_empty(&mut self, stream: &Self::TokenStream) -> bool {
562        stream.is_empty()
563    }
564
565    fn from_str(&mut self, src: &str) -> Self::TokenStream {
566        unwrap_or_emit_fatal(source_str_to_stream(
567            self.psess(),
568            FileName::proc_macro_source_code(src),
569            src.to_string(),
570            Some(self.call_site),
571        ))
572    }
573
574    fn to_string(&mut self, stream: &Self::TokenStream) -> String {
575        pprust::tts_to_string(stream)
576    }
577
578    fn expand_expr(&mut self, stream: &Self::TokenStream) -> Result<Self::TokenStream, ()> {
579        // Parse the expression from our tokenstream.
580        let expr: PResult<'_, _> = try {
581            let mut p = Parser::new(self.psess(), stream.clone(), Some("proc_macro expand expr"));
582            let expr = p.parse_expr()?;
583            if p.token != token::Eof {
584                p.unexpected()?;
585            }
586            expr
587        };
588        let expr = expr.map_err(|err| {
589            err.emit();
590        })?;
591
592        // Perform eager expansion on the expression.
593        let expr = self
594            .ecx
595            .expander()
596            .fully_expand_fragment(crate::expand::AstFragment::Expr(expr))
597            .make_expr();
598
599        // NOTE: For now, limit `expand_expr` to exclusively expand to literals.
600        // This may be relaxed in the future.
601        // We don't use `TokenStream::from_ast` as the tokenstream currently cannot
602        // be recovered in the general case.
603        match &expr.kind {
604            ast::ExprKind::Lit(token_lit) if token_lit.kind == token::Bool => {
605                Ok(tokenstream::TokenStream::token_alone(
606                    token::Ident(token_lit.symbol, IdentIsRaw::No),
607                    expr.span,
608                ))
609            }
610            ast::ExprKind::Lit(token_lit) => {
611                Ok(tokenstream::TokenStream::token_alone(token::Literal(*token_lit), expr.span))
612            }
613            ast::ExprKind::IncludedBytes(byte_sym) => {
614                let lit = token::Lit::new(
615                    token::ByteStr,
616                    escape_byte_str_symbol(byte_sym.as_byte_str()),
617                    None,
618                );
619                Ok(tokenstream::TokenStream::token_alone(token::TokenKind::Literal(lit), expr.span))
620            }
621            ast::ExprKind::Unary(ast::UnOp::Neg, e) => match &e.kind {
622                ast::ExprKind::Lit(token_lit) => match token_lit {
623                    token::Lit { kind: token::Integer | token::Float, .. } => {
624                        Ok(Self::TokenStream::from_iter([
625                            // FIXME: The span of the `-` token is lost when
626                            // parsing, so we cannot faithfully recover it here.
627                            tokenstream::TokenTree::token_joint_hidden(token::Minus, e.span),
628                            tokenstream::TokenTree::token_alone(token::Literal(*token_lit), e.span),
629                        ]))
630                    }
631                    _ => Err(()),
632                },
633                _ => Err(()),
634            },
635            _ => Err(()),
636        }
637    }
638
639    fn from_token_tree(
640        &mut self,
641        tree: TokenTree<Self::TokenStream, Self::Span, Self::Symbol>,
642    ) -> Self::TokenStream {
643        Self::TokenStream::new((tree, &mut *self).to_internal().into_iter().collect::<Vec<_>>())
644    }
645
646    fn concat_trees(
647        &mut self,
648        base: Option<Self::TokenStream>,
649        trees: Vec<TokenTree<Self::TokenStream, Self::Span, Self::Symbol>>,
650    ) -> Self::TokenStream {
651        let mut stream = base.unwrap_or_default();
652        for tree in trees {
653            for tt in (tree, &mut *self).to_internal() {
654                stream.push_tree(tt);
655            }
656        }
657        stream
658    }
659
660    fn concat_streams(
661        &mut self,
662        base: Option<Self::TokenStream>,
663        streams: Vec<Self::TokenStream>,
664    ) -> Self::TokenStream {
665        let mut stream = base.unwrap_or_default();
666        for s in streams {
667            stream.push_stream(s);
668        }
669        stream
670    }
671
672    fn into_trees(
673        &mut self,
674        stream: Self::TokenStream,
675    ) -> Vec<TokenTree<Self::TokenStream, Self::Span, Self::Symbol>> {
676        FromInternal::from_internal((stream, self))
677    }
678}
679
680impl server::Span for Rustc<'_, '_> {
681    fn debug(&mut self, span: Self::Span) -> String {
682        if self.ecx.ecfg.span_debug {
683            format!("{span:?}")
684        } else {
685            format!("{:?} bytes({}..{})", span.ctxt(), span.lo().0, span.hi().0)
686        }
687    }
688
689    fn file(&mut self, span: Self::Span) -> String {
690        self.psess()
691            .source_map()
692            .lookup_char_pos(span.lo())
693            .file
694            .name
695            .prefer_remapped_unconditionally()
696            .to_string()
697    }
698
699    fn local_file(&mut self, span: Self::Span) -> Option<String> {
700        self.psess()
701            .source_map()
702            .lookup_char_pos(span.lo())
703            .file
704            .name
705            .clone()
706            .into_local_path()
707            .map(|p| {
708                p.to_str()
709                    .expect("non-UTF8 file path in `proc_macro::SourceFile::path`")
710                    .to_string()
711            })
712    }
713
714    fn parent(&mut self, span: Self::Span) -> Option<Self::Span> {
715        span.parent_callsite()
716    }
717
718    fn source(&mut self, span: Self::Span) -> Self::Span {
719        span.source_callsite()
720    }
721
722    fn byte_range(&mut self, span: Self::Span) -> Range<usize> {
723        let source_map = self.psess().source_map();
724
725        let relative_start_pos = source_map.lookup_byte_offset(span.lo()).pos;
726        let relative_end_pos = source_map.lookup_byte_offset(span.hi()).pos;
727
728        Range { start: relative_start_pos.0 as usize, end: relative_end_pos.0 as usize }
729    }
730    fn start(&mut self, span: Self::Span) -> Self::Span {
731        span.shrink_to_lo()
732    }
733
734    fn end(&mut self, span: Self::Span) -> Self::Span {
735        span.shrink_to_hi()
736    }
737
738    fn line(&mut self, span: Self::Span) -> usize {
739        let loc = self.psess().source_map().lookup_char_pos(span.lo());
740        loc.line
741    }
742
743    fn column(&mut self, span: Self::Span) -> usize {
744        let loc = self.psess().source_map().lookup_char_pos(span.lo());
745        loc.col.to_usize() + 1
746    }
747
748    fn join(&mut self, first: Self::Span, second: Self::Span) -> Option<Self::Span> {
749        let self_loc = self.psess().source_map().lookup_char_pos(first.lo());
750        let other_loc = self.psess().source_map().lookup_char_pos(second.lo());
751
752        if self_loc.file.name != other_loc.file.name {
753            return None;
754        }
755
756        Some(first.to(second))
757    }
758
759    fn subspan(
760        &mut self,
761        span: Self::Span,
762        start: Bound<usize>,
763        end: Bound<usize>,
764    ) -> Option<Self::Span> {
765        let length = span.hi().to_usize() - span.lo().to_usize();
766
767        let start = match start {
768            Bound::Included(lo) => lo,
769            Bound::Excluded(lo) => lo.checked_add(1)?,
770            Bound::Unbounded => 0,
771        };
772
773        let end = match end {
774            Bound::Included(hi) => hi.checked_add(1)?,
775            Bound::Excluded(hi) => hi,
776            Bound::Unbounded => length,
777        };
778
779        // Bounds check the values, preventing addition overflow and OOB spans.
780        if start > u32::MAX as usize
781            || end > u32::MAX as usize
782            || (u32::MAX - start as u32) < span.lo().to_u32()
783            || (u32::MAX - end as u32) < span.lo().to_u32()
784            || start >= end
785            || end > length
786        {
787            return None;
788        }
789
790        let new_lo = span.lo() + BytePos::from_usize(start);
791        let new_hi = span.lo() + BytePos::from_usize(end);
792        Some(span.with_lo(new_lo).with_hi(new_hi))
793    }
794
795    fn resolved_at(&mut self, span: Self::Span, at: Self::Span) -> Self::Span {
796        span.with_ctxt(at.ctxt())
797    }
798
799    fn source_text(&mut self, span: Self::Span) -> Option<String> {
800        self.psess().source_map().span_to_snippet(span).ok()
801    }
802
803    /// Saves the provided span into the metadata of
804    /// *the crate we are currently compiling*, which must
805    /// be a proc-macro crate. This id can be passed to
806    /// `recover_proc_macro_span` when our current crate
807    /// is *run* as a proc-macro.
808    ///
809    /// Let's suppose that we have two crates - `my_client`
810    /// and `my_proc_macro`. The `my_proc_macro` crate
811    /// contains a procedural macro `my_macro`, which
812    /// is implemented as: `quote! { "hello" }`
813    ///
814    /// When we *compile* `my_proc_macro`, we will execute
815    /// the `quote` proc-macro. This will save the span of
816    /// "hello" into the metadata of `my_proc_macro`. As a result,
817    /// the body of `my_proc_macro` (after expansion) will end
818    /// up containing a call that looks like this:
819    /// `proc_macro::Ident::new("hello", proc_macro::Span::recover_proc_macro_span(0))`
820    ///
821    /// where `0` is the id returned by this function.
822    /// When `my_proc_macro` *executes* (during the compilation of `my_client`),
823    /// the call to `recover_proc_macro_span` will load the corresponding
824    /// span from the metadata of `my_proc_macro` (which we have access to,
825    /// since we've loaded `my_proc_macro` from disk in order to execute it).
826    /// In this way, we have obtained a span pointing into `my_proc_macro`
827    fn save_span(&mut self, span: Self::Span) -> usize {
828        self.psess().save_proc_macro_span(span)
829    }
830
831    fn recover_proc_macro_span(&mut self, id: usize) -> Self::Span {
832        let (resolver, krate, def_site) = (&*self.ecx.resolver, self.krate, self.def_site);
833        *self.rebased_spans.entry(id).or_insert_with(|| {
834            // FIXME: `SyntaxContext` for spans from proc macro crates is lost during encoding,
835            // replace it with a def-site context until we are encoding it properly.
836            resolver.get_proc_macro_quoted_span(krate, id).with_ctxt(def_site.ctxt())
837        })
838    }
839}
840
841impl server::Symbol for Rustc<'_, '_> {
842    fn normalize_and_validate_ident(&mut self, string: &str) -> Result<Self::Symbol, ()> {
843        let sym = nfc_normalize(string);
844        if rustc_lexer::is_ident(sym.as_str()) { Ok(sym) } else { Err(()) }
845    }
846}
847
848impl server::Server for Rustc<'_, '_> {
849    fn globals(&mut self) -> ExpnGlobals<Self::Span> {
850        ExpnGlobals {
851            def_site: self.def_site,
852            call_site: self.call_site,
853            mixed_site: self.mixed_site,
854        }
855    }
856
857    fn intern_symbol(string: &str) -> Self::Symbol {
858        Symbol::intern(string)
859    }
860
861    fn with_symbol_string(symbol: &Self::Symbol, f: impl FnOnce(&str)) {
862        f(symbol.as_str())
863    }
864}