]> git.lizzy.rs Git - rust.git/blob - library/proc_macro/src/bridge/client.rs
Rollup merge of #92956 - scottmcm:nonzero-log2, r=dtolnay
[rust.git] / library / proc_macro / src / bridge / client.rs
1 //! Client-side types.
2
3 use super::*;
4
5 macro_rules! define_handles {
6     (
7         'owned: $($oty:ident,)*
8         'interned: $($ity:ident,)*
9     ) => {
10         #[repr(C)]
11         #[allow(non_snake_case)]
12         pub struct HandleCounters {
13             $($oty: AtomicUsize,)*
14             $($ity: AtomicUsize,)*
15         }
16
17         impl HandleCounters {
18             // FIXME(eddyb) use a reference to the `static COUNTERS`, instead of
19             // a wrapper `fn` pointer, once `const fn` can reference `static`s.
20             extern "C" fn get() -> &'static Self {
21                 static COUNTERS: HandleCounters = HandleCounters {
22                     $($oty: AtomicUsize::new(1),)*
23                     $($ity: AtomicUsize::new(1),)*
24                 };
25                 &COUNTERS
26             }
27         }
28
29         // FIXME(eddyb) generate the definition of `HandleStore` in `server.rs`.
30         #[repr(C)]
31         #[allow(non_snake_case)]
32         pub(super) struct HandleStore<S: server::Types> {
33             $($oty: handle::OwnedStore<S::$oty>,)*
34             $($ity: handle::InternedStore<S::$ity>,)*
35         }
36
37         impl<S: server::Types> HandleStore<S> {
38             pub(super) fn new(handle_counters: &'static HandleCounters) -> Self {
39                 HandleStore {
40                     $($oty: handle::OwnedStore::new(&handle_counters.$oty),)*
41                     $($ity: handle::InternedStore::new(&handle_counters.$ity),)*
42                 }
43             }
44         }
45
46         $(
47             #[repr(C)]
48             pub(crate) struct $oty(handle::Handle);
49             impl !Send for $oty {}
50             impl !Sync for $oty {}
51
52             // Forward `Drop::drop` to the inherent `drop` method.
53             impl Drop for $oty {
54                 fn drop(&mut self) {
55                     $oty(self.0).drop();
56                 }
57             }
58
59             impl<S> Encode<S> for $oty {
60                 fn encode(self, w: &mut Writer, s: &mut S) {
61                     let handle = self.0;
62                     mem::forget(self);
63                     handle.encode(w, s);
64                 }
65             }
66
67             impl<S: server::Types> DecodeMut<'_, '_, HandleStore<server::MarkedTypes<S>>>
68                 for Marked<S::$oty, $oty>
69             {
70                 fn decode(r: &mut Reader<'_>, s: &mut HandleStore<server::MarkedTypes<S>>) -> Self {
71                     s.$oty.take(handle::Handle::decode(r, &mut ()))
72                 }
73             }
74
75             impl<S> Encode<S> for &$oty {
76                 fn encode(self, w: &mut Writer, s: &mut S) {
77                     self.0.encode(w, s);
78                 }
79             }
80
81             impl<'s, S: server::Types> Decode<'_, 's, HandleStore<server::MarkedTypes<S>>>
82                 for &'s Marked<S::$oty, $oty>
83             {
84                 fn decode(r: &mut Reader<'_>, s: &'s HandleStore<server::MarkedTypes<S>>) -> Self {
85                     &s.$oty[handle::Handle::decode(r, &mut ())]
86                 }
87             }
88
89             impl<S> Encode<S> for &mut $oty {
90                 fn encode(self, w: &mut Writer, s: &mut S) {
91                     self.0.encode(w, s);
92                 }
93             }
94
95             impl<'s, S: server::Types> DecodeMut<'_, 's, HandleStore<server::MarkedTypes<S>>>
96                 for &'s mut Marked<S::$oty, $oty>
97             {
98                 fn decode(
99                     r: &mut Reader<'_>,
100                     s: &'s mut HandleStore<server::MarkedTypes<S>>
101                 ) -> Self {
102                     &mut s.$oty[handle::Handle::decode(r, &mut ())]
103                 }
104             }
105
106             impl<S: server::Types> Encode<HandleStore<server::MarkedTypes<S>>>
107                 for Marked<S::$oty, $oty>
108             {
109                 fn encode(self, w: &mut Writer, s: &mut HandleStore<server::MarkedTypes<S>>) {
110                     s.$oty.alloc(self).encode(w, s);
111                 }
112             }
113
114             impl<S> DecodeMut<'_, '_, S> for $oty {
115                 fn decode(r: &mut Reader<'_>, s: &mut S) -> Self {
116                     $oty(handle::Handle::decode(r, s))
117                 }
118             }
119         )*
120
121         $(
122             #[repr(C)]
123             #[derive(Copy, Clone, PartialEq, Eq, Hash)]
124             pub(crate) struct $ity(handle::Handle);
125             impl !Send for $ity {}
126             impl !Sync for $ity {}
127
128             impl<S> Encode<S> for $ity {
129                 fn encode(self, w: &mut Writer, s: &mut S) {
130                     self.0.encode(w, s);
131                 }
132             }
133
134             impl<S: server::Types> DecodeMut<'_, '_, HandleStore<server::MarkedTypes<S>>>
135                 for Marked<S::$ity, $ity>
136             {
137                 fn decode(r: &mut Reader<'_>, s: &mut HandleStore<server::MarkedTypes<S>>) -> Self {
138                     s.$ity.copy(handle::Handle::decode(r, &mut ()))
139                 }
140             }
141
142             impl<S: server::Types> Encode<HandleStore<server::MarkedTypes<S>>>
143                 for Marked<S::$ity, $ity>
144             {
145                 fn encode(self, w: &mut Writer, s: &mut HandleStore<server::MarkedTypes<S>>) {
146                     s.$ity.alloc(self).encode(w, s);
147                 }
148             }
149
150             impl<S> DecodeMut<'_, '_, S> for $ity {
151                 fn decode(r: &mut Reader<'_>, s: &mut S) -> Self {
152                     $ity(handle::Handle::decode(r, s))
153                 }
154             }
155         )*
156     }
157 }
158 define_handles! {
159     'owned:
160     FreeFunctions,
161     TokenStream,
162     TokenStreamBuilder,
163     TokenStreamIter,
164     Group,
165     Literal,
166     SourceFile,
167     MultiSpan,
168     Diagnostic,
169
170     'interned:
171     Punct,
172     Ident,
173     Span,
174 }
175
176 // FIXME(eddyb) generate these impls by pattern-matching on the
177 // names of methods - also could use the presence of `fn drop`
178 // to distinguish between 'owned and 'interned, above.
179 // Alternatively, special 'modes" could be listed of types in with_api
180 // instead of pattern matching on methods, here and in server decl.
181
182 impl Clone for TokenStream {
183     fn clone(&self) -> Self {
184         self.clone()
185     }
186 }
187
188 impl Clone for TokenStreamIter {
189     fn clone(&self) -> Self {
190         self.clone()
191     }
192 }
193
194 impl Clone for Group {
195     fn clone(&self) -> Self {
196         self.clone()
197     }
198 }
199
200 impl Clone for Literal {
201     fn clone(&self) -> Self {
202         self.clone()
203     }
204 }
205
206 impl fmt::Debug for Literal {
207     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
208         f.debug_struct("Literal")
209             // format the kind without quotes, as in `kind: Float`
210             .field("kind", &format_args!("{}", &self.debug_kind()))
211             .field("symbol", &self.symbol())
212             // format `Some("...")` on one line even in {:#?} mode
213             .field("suffix", &format_args!("{:?}", &self.suffix()))
214             .field("span", &self.span())
215             .finish()
216     }
217 }
218
219 impl Clone for SourceFile {
220     fn clone(&self) -> Self {
221         self.clone()
222     }
223 }
224
225 impl fmt::Debug for Span {
226     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
227         f.write_str(&self.debug())
228     }
229 }
230
231 macro_rules! define_client_side {
232     ($($name:ident {
233         $(fn $method:ident($($arg:ident: $arg_ty:ty),* $(,)?) $(-> $ret_ty:ty)*;)*
234     }),* $(,)?) => {
235         $(impl $name {
236             $(pub(crate) fn $method($($arg: $arg_ty),*) $(-> $ret_ty)* {
237                 Bridge::with(|bridge| {
238                     let mut b = bridge.cached_buffer.take();
239
240                     b.clear();
241                     api_tags::Method::$name(api_tags::$name::$method).encode(&mut b, &mut ());
242                     reverse_encode!(b; $($arg),*);
243
244                     b = bridge.dispatch.call(b);
245
246                     let r = Result::<_, PanicMessage>::decode(&mut &b[..], &mut ());
247
248                     bridge.cached_buffer = b;
249
250                     r.unwrap_or_else(|e| panic::resume_unwind(e.into()))
251                 })
252             })*
253         })*
254     }
255 }
256 with_api!(self, self, define_client_side);
257
258 enum BridgeState<'a> {
259     /// No server is currently connected to this client.
260     NotConnected,
261
262     /// A server is connected and available for requests.
263     Connected(Bridge<'a>),
264
265     /// Access to the bridge is being exclusively acquired
266     /// (e.g., during `BridgeState::with`).
267     InUse,
268 }
269
270 enum BridgeStateL {}
271
272 impl<'a> scoped_cell::ApplyL<'a> for BridgeStateL {
273     type Out = BridgeState<'a>;
274 }
275
276 thread_local! {
277     static BRIDGE_STATE: scoped_cell::ScopedCell<BridgeStateL> =
278         scoped_cell::ScopedCell::new(BridgeState::NotConnected);
279 }
280
281 impl BridgeState<'_> {
282     /// Take exclusive control of the thread-local
283     /// `BridgeState`, and pass it to `f`, mutably.
284     /// The state will be restored after `f` exits, even
285     /// by panic, including modifications made to it by `f`.
286     ///
287     /// N.B., while `f` is running, the thread-local state
288     /// is `BridgeState::InUse`.
289     fn with<R>(f: impl FnOnce(&mut BridgeState<'_>) -> R) -> R {
290         BRIDGE_STATE.with(|state| {
291             state.replace(BridgeState::InUse, |mut state| {
292                 // FIXME(#52812) pass `f` directly to `replace` when `RefMutL` is gone
293                 f(&mut *state)
294             })
295         })
296     }
297 }
298
299 impl Bridge<'_> {
300     pub(crate) fn is_available() -> bool {
301         BridgeState::with(|state| match state {
302             BridgeState::Connected(_) | BridgeState::InUse => true,
303             BridgeState::NotConnected => false,
304         })
305     }
306
307     fn enter<R>(self, f: impl FnOnce() -> R) -> R {
308         let force_show_panics = self.force_show_panics;
309         // Hide the default panic output within `proc_macro` expansions.
310         // NB. the server can't do this because it may use a different libstd.
311         static HIDE_PANICS_DURING_EXPANSION: Once = Once::new();
312         HIDE_PANICS_DURING_EXPANSION.call_once(|| {
313             panic::update_hook(move |prev, info| {
314                 let show = BridgeState::with(|state| match state {
315                     BridgeState::NotConnected => true,
316                     BridgeState::Connected(_) | BridgeState::InUse => force_show_panics,
317                 });
318                 if show {
319                     prev(info)
320                 }
321             });
322         });
323
324         BRIDGE_STATE.with(|state| state.set(BridgeState::Connected(self), f))
325     }
326
327     fn with<R>(f: impl FnOnce(&mut Bridge<'_>) -> R) -> R {
328         BridgeState::with(|state| match state {
329             BridgeState::NotConnected => {
330                 panic!("procedural macro API is used outside of a procedural macro");
331             }
332             BridgeState::InUse => {
333                 panic!("procedural macro API is used while it's already in use");
334             }
335             BridgeState::Connected(bridge) => f(bridge),
336         })
337     }
338 }
339
340 /// A client-side "global object" (usually a function pointer),
341 /// which may be using a different `proc_macro` from the one
342 /// used by the server, but can be interacted with compatibly.
343 ///
344 /// N.B., `F` must have FFI-friendly memory layout (e.g., a pointer).
345 /// The call ABI of function pointers used for `F` doesn't
346 /// need to match between server and client, since it's only
347 /// passed between them and (eventually) called by the client.
348 #[repr(C)]
349 #[derive(Copy, Clone)]
350 pub struct Client<F> {
351     // FIXME(eddyb) use a reference to the `static COUNTERS`, instead of
352     // a wrapper `fn` pointer, once `const fn` can reference `static`s.
353     pub(super) get_handle_counters: extern "C" fn() -> &'static HandleCounters,
354     pub(super) run: extern "C" fn(Bridge<'_>, F) -> Buffer<u8>,
355     pub(super) f: F,
356 }
357
358 /// Client-side helper for handling client panics, entering the bridge,
359 /// deserializing input and serializing output.
360 // FIXME(eddyb) maybe replace `Bridge::enter` with this?
361 fn run_client<A: for<'a, 's> DecodeMut<'a, 's, ()>, R: Encode<()>>(
362     mut bridge: Bridge<'_>,
363     f: impl FnOnce(A) -> R,
364 ) -> Buffer<u8> {
365     // The initial `cached_buffer` contains the input.
366     let mut b = bridge.cached_buffer.take();
367
368     panic::catch_unwind(panic::AssertUnwindSafe(|| {
369         bridge.enter(|| {
370             let reader = &mut &b[..];
371             let input = A::decode(reader, &mut ());
372
373             // Put the `cached_buffer` back in the `Bridge`, for requests.
374             Bridge::with(|bridge| bridge.cached_buffer = b.take());
375
376             let output = f(input);
377
378             // Take the `cached_buffer` back out, for the output value.
379             b = Bridge::with(|bridge| bridge.cached_buffer.take());
380
381             // HACK(eddyb) Separate encoding a success value (`Ok(output)`)
382             // from encoding a panic (`Err(e: PanicMessage)`) to avoid
383             // having handles outside the `bridge.enter(|| ...)` scope, and
384             // to catch panics that could happen while encoding the success.
385             //
386             // Note that panics should be impossible beyond this point, but
387             // this is defensively trying to avoid any accidental panicking
388             // reaching the `extern "C"` (which should `abort` but might not
389             // at the moment, so this is also potentially preventing UB).
390             b.clear();
391             Ok::<_, ()>(output).encode(&mut b, &mut ());
392         })
393     }))
394     .map_err(PanicMessage::from)
395     .unwrap_or_else(|e| {
396         b.clear();
397         Err::<(), _>(e).encode(&mut b, &mut ());
398     });
399     b
400 }
401
402 impl Client<fn(crate::TokenStream) -> crate::TokenStream> {
403     #[rustc_allow_const_fn_unstable(const_fn)]
404     pub const fn expand1(f: fn(crate::TokenStream) -> crate::TokenStream) -> Self {
405         extern "C" fn run(
406             bridge: Bridge<'_>,
407             f: impl FnOnce(crate::TokenStream) -> crate::TokenStream,
408         ) -> Buffer<u8> {
409             run_client(bridge, |input| f(crate::TokenStream(input)).0)
410         }
411         Client { get_handle_counters: HandleCounters::get, run, f }
412     }
413 }
414
415 impl Client<fn(crate::TokenStream, crate::TokenStream) -> crate::TokenStream> {
416     #[rustc_allow_const_fn_unstable(const_fn)]
417     pub const fn expand2(
418         f: fn(crate::TokenStream, crate::TokenStream) -> crate::TokenStream,
419     ) -> Self {
420         extern "C" fn run(
421             bridge: Bridge<'_>,
422             f: impl FnOnce(crate::TokenStream, crate::TokenStream) -> crate::TokenStream,
423         ) -> Buffer<u8> {
424             run_client(bridge, |(input, input2)| {
425                 f(crate::TokenStream(input), crate::TokenStream(input2)).0
426             })
427         }
428         Client { get_handle_counters: HandleCounters::get, run, f }
429     }
430 }
431
432 #[repr(C)]
433 #[derive(Copy, Clone)]
434 pub enum ProcMacro {
435     CustomDerive {
436         trait_name: &'static str,
437         attributes: &'static [&'static str],
438         client: Client<fn(crate::TokenStream) -> crate::TokenStream>,
439     },
440
441     Attr {
442         name: &'static str,
443         client: Client<fn(crate::TokenStream, crate::TokenStream) -> crate::TokenStream>,
444     },
445
446     Bang {
447         name: &'static str,
448         client: Client<fn(crate::TokenStream) -> crate::TokenStream>,
449     },
450 }
451
452 impl ProcMacro {
453     pub fn name(&self) -> &'static str {
454         match self {
455             ProcMacro::CustomDerive { trait_name, .. } => trait_name,
456             ProcMacro::Attr { name, .. } => name,
457             ProcMacro::Bang { name, .. } => name,
458         }
459     }
460
461     #[rustc_allow_const_fn_unstable(const_fn)]
462     pub const fn custom_derive(
463         trait_name: &'static str,
464         attributes: &'static [&'static str],
465         expand: fn(crate::TokenStream) -> crate::TokenStream,
466     ) -> Self {
467         ProcMacro::CustomDerive { trait_name, attributes, client: Client::expand1(expand) }
468     }
469
470     #[rustc_allow_const_fn_unstable(const_fn)]
471     pub const fn attr(
472         name: &'static str,
473         expand: fn(crate::TokenStream, crate::TokenStream) -> crate::TokenStream,
474     ) -> Self {
475         ProcMacro::Attr { name, client: Client::expand2(expand) }
476     }
477
478     #[rustc_allow_const_fn_unstable(const_fn)]
479     pub const fn bang(
480         name: &'static str,
481         expand: fn(crate::TokenStream) -> crate::TokenStream,
482     ) -> Self {
483         ProcMacro::Bang { name, client: Client::expand1(expand) }
484     }
485 }