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::Methods::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 !matches!(string, "_" | "super" | "self" | "Self" | "crate" | "$crate")
81 }
82}
83
84impl fmt::Debug for Symbol {
85 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
86 self.with(|s| fmt::Debug::fmt(s, f))
87 }
88}
89
90impl fmt::Display for Symbol {
91 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
92 self.with(|s| fmt::Display::fmt(s, f))
93 }
94}
95
96impl<S> Encode<S> for Symbol {
97 fn encode(self, w: &mut Buffer, s: &mut S) {
98 self.with(|sym| sym.encode(w, s))
99 }
100}
101
102impl<S: server::Server> Decode<'_, '_, server::HandleStore<S>> for server::MarkedSymbol<S> {
103 fn decode(r: &mut &[u8], s: &mut server::HandleStore<S>) -> Self {
104 Mark::mark(S::intern_symbol(<&str>::decode(r, s)))
105 }
106}
107
108impl<S: server::Server> Encode<server::HandleStore<S>> for server::MarkedSymbol<S> {
109 fn encode(self, w: &mut Buffer, s: &mut server::HandleStore<S>) {
110 S::with_symbol_string(&self.unmark(), |sym| sym.encode(w, s))
111 }
112}
113
114impl<S> Decode<'_, '_, S> for Symbol {
115 fn decode(r: &mut &[u8], s: &mut S) -> Self {
116 Symbol::new(<&str>::decode(r, s))
117 }
118}
119
120thread_local! {
121 static INTERNER: RefCell<Interner> = RefCell::new(Interner {
122 arena: arena::Arena::new(),
123 names: fxhash::FxHashMap::default(),
124 strings: Vec::new(),
125 sym_base: NonZero::new(1).unwrap(),
127 });
128}
129
130struct Interner {
132 arena: arena::Arena,
133 names: fxhash::FxHashMap<&'static str, Symbol>,
137 strings: Vec<&'static str>,
138 sym_base: NonZero<u32>,
142}
143
144impl Interner {
145 fn intern(&mut self, string: &str) -> Symbol {
146 if let Some(&name) = self.names.get(string) {
147 return name;
148 }
149
150 let name = Symbol(
151 self.sym_base
152 .checked_add(self.strings.len() as u32)
153 .expect("`proc_macro` symbol name overflow"),
154 );
155
156 let string: &str = self.arena.alloc_str(string);
157
158 let string: &'static str = unsafe { &*(string as *const str) };
161 self.strings.push(string);
162 self.names.insert(string, name);
163 name
164 }
165
166 fn get(&self, symbol: Symbol) -> &str {
168 let name = symbol
171 .0
172 .get()
173 .checked_sub(self.sym_base.get())
174 .expect("use-after-free of `proc_macro` symbol");
175 self.strings[name as usize]
176 }
177
178 fn clear(&mut self) {
181 self.sym_base = self.sym_base.saturating_add(self.strings.len() as u32);
184 self.names.clear();
185 self.strings.clear();
186
187 self.arena = arena::Arena::new();
190 }
191}