rustc_proc_macro/bridge/
symbol.rs1use std::cell::RefCell;
13use std::num::NonZero;
14
15use super::*;
16
17#[derive(Copy, Clone, PartialEq, Eq, Hash)]
19pub struct Symbol(NonZero<u32>);
20
21impl !Send for Symbol {}
22impl !Sync for Symbol {}
23
24impl Symbol {
25 pub(crate) fn new(string: &str) -> Self {
27 INTERNER.with_borrow_mut(|i| i.intern(string))
28 }
29
30 pub(crate) fn new_ident(string: &str, is_raw: bool) -> Self {
34 if Self::is_valid_ascii_ident(string.as_bytes()) || string == "$crate" {
36 if is_raw && !Self::can_be_raw(string) {
37 panic!("`{}` cannot be a raw identifier", string);
38 }
39 return Self::new(string);
40 }
41
42 if string.is_ascii() {
47 Err(())
48 } else {
49 client::Symbol::normalize_and_validate_ident(string)
50 }
51 .unwrap_or_else(|_| panic!("`{:?}` is not a valid identifier", string))
52 }
53
54 pub(crate) fn with<R>(self, f: impl FnOnce(&str) -> R) -> R {
56 INTERNER.with_borrow(|i| f(i.get(self)))
57 }
58
59 pub(crate) fn invalidate_all() {
62 INTERNER.with_borrow_mut(|i| i.clear());
63 }
64
65 fn is_valid_ascii_ident(bytes: &[u8]) -> bool {
72 matches!(bytes.first(), Some(b'_' | b'a'..=b'z' | b'A'..=b'Z'))
73 && bytes[1..]
74 .iter()
75 .all(|b| matches!(b, b'_' | b'a'..=b'z' | b'A'..=b'Z' | b'0'..=b'9'))
76 }
77
78 fn can_be_raw(string: &str) -> bool {
80 match string {
81 "_" | "super" | "self" | "Self" | "crate" | "$crate" => false,
82 _ => true,
83 }
84 }
85}
86
87impl fmt::Debug for Symbol {
88 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
89 self.with(|s| fmt::Debug::fmt(s, f))
90 }
91}
92
93impl fmt::Display for Symbol {
94 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
95 self.with(|s| fmt::Display::fmt(s, f))
96 }
97}
98
99impl<S> Encode<S> for Symbol {
100 fn encode(self, w: &mut Writer, s: &mut S) {
101 self.with(|sym| sym.encode(w, s))
102 }
103}
104
105impl<S: server::Server> Decode<'_, '_, server::HandleStore<server::MarkedTypes<S>>>
106 for Marked<S::Symbol, Symbol>
107{
108 fn decode(r: &mut Reader<'_>, s: &mut server::HandleStore<server::MarkedTypes<S>>) -> Self {
109 Mark::mark(S::intern_symbol(<&str>::decode(r, s)))
110 }
111}
112
113impl<S: server::Server> Encode<server::HandleStore<server::MarkedTypes<S>>>
114 for Marked<S::Symbol, Symbol>
115{
116 fn encode(self, w: &mut Writer, s: &mut server::HandleStore<server::MarkedTypes<S>>) {
117 S::with_symbol_string(&self.unmark(), |sym| sym.encode(w, s))
118 }
119}
120
121impl<S> Decode<'_, '_, S> for Symbol {
122 fn decode(r: &mut Reader<'_>, s: &mut S) -> Self {
123 Symbol::new(<&str>::decode(r, s))
124 }
125}
126
127thread_local! {
128 static INTERNER: RefCell<Interner> = RefCell::new(Interner {
129 arena: arena::Arena::new(),
130 names: fxhash::FxHashMap::default(),
131 strings: Vec::new(),
132 sym_base: NonZero::new(1).unwrap(),
134 });
135}
136
137struct Interner {
139 arena: arena::Arena,
140 names: fxhash::FxHashMap<&'static str, Symbol>,
144 strings: Vec<&'static str>,
145 sym_base: NonZero<u32>,
149}
150
151impl Interner {
152 fn intern(&mut self, string: &str) -> Symbol {
153 if let Some(&name) = self.names.get(string) {
154 return name;
155 }
156
157 let name = Symbol(
158 self.sym_base
159 .checked_add(self.strings.len() as u32)
160 .expect("`proc_macro` symbol name overflow"),
161 );
162
163 let string: &str = self.arena.alloc_str(string);
164
165 let string: &'static str = unsafe { &*(string as *const str) };
168 self.strings.push(string);
169 self.names.insert(string, name);
170 name
171 }
172
173 fn get(&self, symbol: Symbol) -> &str {
175 let name = symbol
178 .0
179 .get()
180 .checked_sub(self.sym_base.get())
181 .expect("use-after-free of `proc_macro` symbol");
182 self.strings[name as usize]
183 }
184
185 fn clear(&mut self) {
188 self.sym_base = self.sym_base.saturating_add(self.strings.len() as u32);
191 self.names.clear();
192 self.strings.clear();
193
194 self.arena = arena::Arena::new();
197 }
198}