]> git.lizzy.rs Git - rust.git/blob - src/libproc_macro/bridge/mod.rs
Account for `ty::Error` when suggesting `impl Trait` or `Box<dyn Trait>`
[rust.git] / src / libproc_macro / bridge / mod.rs
1 //! Internal interface for communicating between a `proc_macro` client
2 //! (a proc macro crate) and a `proc_macro` server (a compiler front-end).
3 //!
4 //! Serialization (with C ABI buffers) and unique integer handles are employed
5 //! to allow safely interfacing between two copies of `proc_macro` built
6 //! (from the same source) by different compilers with potentially mismatching
7 //! Rust ABIs (e.g., stage0/bin/rustc vs stage1/bin/rustc during bootstrap).
8
9 #![deny(unsafe_code)]
10
11 use crate::{Delimiter, Level, LineColumn, Spacing};
12 use std::fmt;
13 use std::hash::Hash;
14 use std::marker;
15 use std::mem;
16 use std::ops::Bound;
17 use std::panic;
18 use std::sync::atomic::AtomicUsize;
19 use std::sync::Once;
20 use std::thread;
21
22 /// Higher-order macro describing the server RPC API, allowing automatic
23 /// generation of type-safe Rust APIs, both client-side and server-side.
24 ///
25 /// `with_api!(MySelf, my_self, my_macro)` expands to:
26 /// ```rust,ignore (pseudo-code)
27 /// my_macro! {
28 ///     // ...
29 ///     Literal {
30 ///         // ...
31 ///         fn character(ch: char) -> MySelf::Literal;
32 ///         // ...
33 ///         fn span(my_self: &MySelf::Literal) -> MySelf::Span;
34 ///         fn set_span(my_self: &mut MySelf::Literal, span: MySelf::Span);
35 ///     },
36 ///     // ...
37 /// }
38 /// ```
39 ///
40 /// The first two arguments serve to customize the arguments names
41 /// and argument/return types, to enable several different usecases:
42 ///
43 /// If `my_self` is just `self`, then each `fn` signature can be used
44 /// as-is for a method. If it's anything else (`self_` in practice),
45 /// then the signatures don't have a special `self` argument, and
46 /// can, therefore, have a different one introduced.
47 ///
48 /// If `MySelf` is just `Self`, then the types are only valid inside
49 /// a trait or a trait impl, where the trait has associated types
50 /// for each of the API types. If non-associated types are desired,
51 /// a module name (`self` in practice) can be used instead of `Self`.
52 macro_rules! with_api {
53     ($S:ident, $self:ident, $m:ident) => {
54         $m! {
55             TokenStream {
56                 fn drop($self: $S::TokenStream);
57                 fn clone($self: &$S::TokenStream) -> $S::TokenStream;
58                 fn new() -> $S::TokenStream;
59                 fn is_empty($self: &$S::TokenStream) -> bool;
60                 fn from_str(src: &str) -> $S::TokenStream;
61                 fn to_string($self: &$S::TokenStream) -> String;
62                 fn from_token_tree(
63                     tree: TokenTree<$S::Group, $S::Punct, $S::Ident, $S::Literal>,
64                 ) -> $S::TokenStream;
65                 fn into_iter($self: $S::TokenStream) -> $S::TokenStreamIter;
66             },
67             TokenStreamBuilder {
68                 fn drop($self: $S::TokenStreamBuilder);
69                 fn new() -> $S::TokenStreamBuilder;
70                 fn push($self: &mut $S::TokenStreamBuilder, stream: $S::TokenStream);
71                 fn build($self: $S::TokenStreamBuilder) -> $S::TokenStream;
72             },
73             TokenStreamIter {
74                 fn drop($self: $S::TokenStreamIter);
75                 fn clone($self: &$S::TokenStreamIter) -> $S::TokenStreamIter;
76                 fn next(
77                     $self: &mut $S::TokenStreamIter,
78                 ) -> Option<TokenTree<$S::Group, $S::Punct, $S::Ident, $S::Literal>>;
79             },
80             Group {
81                 fn drop($self: $S::Group);
82                 fn clone($self: &$S::Group) -> $S::Group;
83                 fn new(delimiter: Delimiter, stream: $S::TokenStream) -> $S::Group;
84                 fn delimiter($self: &$S::Group) -> Delimiter;
85                 fn stream($self: &$S::Group) -> $S::TokenStream;
86                 fn span($self: &$S::Group) -> $S::Span;
87                 fn span_open($self: &$S::Group) -> $S::Span;
88                 fn span_close($self: &$S::Group) -> $S::Span;
89                 fn set_span($self: &mut $S::Group, span: $S::Span);
90             },
91             Punct {
92                 fn new(ch: char, spacing: Spacing) -> $S::Punct;
93                 fn as_char($self: $S::Punct) -> char;
94                 fn spacing($self: $S::Punct) -> Spacing;
95                 fn span($self: $S::Punct) -> $S::Span;
96                 fn with_span($self: $S::Punct, span: $S::Span) -> $S::Punct;
97             },
98             Ident {
99                 fn new(string: &str, span: $S::Span, is_raw: bool) -> $S::Ident;
100                 fn span($self: $S::Ident) -> $S::Span;
101                 fn with_span($self: $S::Ident, span: $S::Span) -> $S::Ident;
102             },
103             Literal {
104                 fn drop($self: $S::Literal);
105                 fn clone($self: &$S::Literal) -> $S::Literal;
106                 // FIXME(eddyb) `Literal` should not expose internal `Debug` impls.
107                 fn debug($self: &$S::Literal) -> String;
108                 fn integer(n: &str) -> $S::Literal;
109                 fn typed_integer(n: &str, kind: &str) -> $S::Literal;
110                 fn float(n: &str) -> $S::Literal;
111                 fn f32(n: &str) -> $S::Literal;
112                 fn f64(n: &str) -> $S::Literal;
113                 fn string(string: &str) -> $S::Literal;
114                 fn character(ch: char) -> $S::Literal;
115                 fn byte_string(bytes: &[u8]) -> $S::Literal;
116                 fn span($self: &$S::Literal) -> $S::Span;
117                 fn set_span($self: &mut $S::Literal, span: $S::Span);
118                 fn subspan(
119                     $self: &$S::Literal,
120                     start: Bound<usize>,
121                     end: Bound<usize>,
122                 ) -> Option<$S::Span>;
123             },
124             SourceFile {
125                 fn drop($self: $S::SourceFile);
126                 fn clone($self: &$S::SourceFile) -> $S::SourceFile;
127                 fn eq($self: &$S::SourceFile, other: &$S::SourceFile) -> bool;
128                 fn path($self: &$S::SourceFile) -> String;
129                 fn is_real($self: &$S::SourceFile) -> bool;
130             },
131             MultiSpan {
132                 fn drop($self: $S::MultiSpan);
133                 fn new() -> $S::MultiSpan;
134                 fn push($self: &mut $S::MultiSpan, span: $S::Span);
135             },
136             Diagnostic {
137                 fn drop($self: $S::Diagnostic);
138                 fn new(level: Level, msg: &str, span: $S::MultiSpan) -> $S::Diagnostic;
139                 fn sub(
140                     $self: &mut $S::Diagnostic,
141                     level: Level,
142                     msg: &str,
143                     span: $S::MultiSpan,
144                 );
145                 fn emit($self: $S::Diagnostic);
146             },
147             Span {
148                 fn debug($self: $S::Span) -> String;
149                 fn def_site() -> $S::Span;
150                 fn call_site() -> $S::Span;
151                 fn mixed_site() -> $S::Span;
152                 fn source_file($self: $S::Span) -> $S::SourceFile;
153                 fn parent($self: $S::Span) -> Option<$S::Span>;
154                 fn source($self: $S::Span) -> $S::Span;
155                 fn start($self: $S::Span) -> LineColumn;
156                 fn end($self: $S::Span) -> LineColumn;
157                 fn join($self: $S::Span, other: $S::Span) -> Option<$S::Span>;
158                 fn resolved_at($self: $S::Span, at: $S::Span) -> $S::Span;
159                 fn source_text($self: $S::Span) -> Option<String>;
160             },
161         }
162     };
163 }
164
165 // FIXME(eddyb) this calls `encode` for each argument, but in reverse,
166 // to avoid borrow conflicts from borrows started by `&mut` arguments.
167 macro_rules! reverse_encode {
168     ($writer:ident;) => {};
169     ($writer:ident; $first:ident $(, $rest:ident)*) => {
170         reverse_encode!($writer; $($rest),*);
171         $first.encode(&mut $writer, &mut ());
172     }
173 }
174
175 // FIXME(eddyb) this calls `decode` for each argument, but in reverse,
176 // to avoid borrow conflicts from borrows started by `&mut` arguments.
177 macro_rules! reverse_decode {
178     ($reader:ident, $s:ident;) => {};
179     ($reader:ident, $s:ident; $first:ident: $first_ty:ty $(, $rest:ident: $rest_ty:ty)*) => {
180         reverse_decode!($reader, $s; $($rest: $rest_ty),*);
181         let $first = <$first_ty>::decode(&mut $reader, $s);
182     }
183 }
184
185 #[allow(unsafe_code)]
186 mod buffer;
187 #[forbid(unsafe_code)]
188 pub mod client;
189 #[allow(unsafe_code)]
190 mod closure;
191 #[forbid(unsafe_code)]
192 mod handle;
193 #[macro_use]
194 #[forbid(unsafe_code)]
195 mod rpc;
196 #[allow(unsafe_code)]
197 mod scoped_cell;
198 #[forbid(unsafe_code)]
199 pub mod server;
200
201 use buffer::Buffer;
202 pub use rpc::PanicMessage;
203 use rpc::{Decode, DecodeMut, Encode, Reader, Writer};
204
205 /// An active connection between a server and a client.
206 /// The server creates the bridge (`Bridge::run_server` in `server.rs`),
207 /// then passes it to the client through the function pointer in the `run`
208 /// field of `client::Client`. The client holds its copy of the `Bridge`
209 /// in TLS during its execution (`Bridge::{enter, with}` in `client.rs`).
210 #[repr(C)]
211 pub struct Bridge<'a> {
212     /// Reusable buffer (only `clear`-ed, never shrunk), primarily
213     /// used for making requests, but also for passing input to client.
214     cached_buffer: Buffer<u8>,
215
216     /// Server-side function that the client uses to make requests.
217     dispatch: closure::Closure<'a, Buffer<u8>, Buffer<u8>>,
218 }
219
220 impl<'a> !Sync for Bridge<'a> {}
221 impl<'a> !Send for Bridge<'a> {}
222
223 #[forbid(unsafe_code)]
224 #[allow(non_camel_case_types)]
225 mod api_tags {
226     use super::rpc::{DecodeMut, Encode, Reader, Writer};
227
228     macro_rules! declare_tags {
229         ($($name:ident {
230             $(fn $method:ident($($arg:ident: $arg_ty:ty),* $(,)?) $(-> $ret_ty:ty)*;)*
231         }),* $(,)?) => {
232             $(
233                 pub(super) enum $name {
234                     $($method),*
235                 }
236                 rpc_encode_decode!(enum $name { $($method),* });
237             )*
238
239
240             pub(super) enum Method {
241                 $($name($name)),*
242             }
243             rpc_encode_decode!(enum Method { $($name(m)),* });
244         }
245     }
246     with_api!(self, self, declare_tags);
247 }
248
249 /// Helper to wrap associated types to allow trait impl dispatch.
250 /// That is, normally a pair of impls for `T::Foo` and `T::Bar`
251 /// can overlap, but if the impls are, instead, on types like
252 /// `Marked<T::Foo, Foo>` and `Marked<T::Bar, Bar>`, they can't.
253 trait Mark {
254     type Unmarked;
255     fn mark(unmarked: Self::Unmarked) -> Self;
256 }
257
258 /// Unwrap types wrapped by `Mark::mark` (see `Mark` for details).
259 trait Unmark {
260     type Unmarked;
261     fn unmark(self) -> Self::Unmarked;
262 }
263
264 #[derive(Copy, Clone, PartialEq, Eq, Hash)]
265 struct Marked<T, M> {
266     value: T,
267     _marker: marker::PhantomData<M>,
268 }
269
270 impl<T, M> Mark for Marked<T, M> {
271     type Unmarked = T;
272     fn mark(unmarked: Self::Unmarked) -> Self {
273         Marked { value: unmarked, _marker: marker::PhantomData }
274     }
275 }
276 impl<T, M> Unmark for Marked<T, M> {
277     type Unmarked = T;
278     fn unmark(self) -> Self::Unmarked {
279         self.value
280     }
281 }
282 impl<T, M> Unmark for &'a Marked<T, M> {
283     type Unmarked = &'a T;
284     fn unmark(self) -> Self::Unmarked {
285         &self.value
286     }
287 }
288 impl<T, M> Unmark for &'a mut Marked<T, M> {
289     type Unmarked = &'a mut T;
290     fn unmark(self) -> Self::Unmarked {
291         &mut self.value
292     }
293 }
294
295 impl<T: Mark> Mark for Option<T> {
296     type Unmarked = Option<T::Unmarked>;
297     fn mark(unmarked: Self::Unmarked) -> Self {
298         unmarked.map(T::mark)
299     }
300 }
301 impl<T: Unmark> Unmark for Option<T> {
302     type Unmarked = Option<T::Unmarked>;
303     fn unmark(self) -> Self::Unmarked {
304         self.map(T::unmark)
305     }
306 }
307
308 macro_rules! mark_noop {
309     ($($ty:ty),* $(,)?) => {
310         $(
311             impl Mark for $ty {
312                 type Unmarked = Self;
313                 fn mark(unmarked: Self::Unmarked) -> Self {
314                     unmarked
315                 }
316             }
317             impl Unmark for $ty {
318                 type Unmarked = Self;
319                 fn unmark(self) -> Self::Unmarked {
320                     self
321                 }
322             }
323         )*
324     }
325 }
326 mark_noop! {
327     (),
328     bool,
329     char,
330     &'a [u8],
331     &'a str,
332     String,
333     Delimiter,
334     Level,
335     LineColumn,
336     Spacing,
337     Bound<usize>,
338 }
339
340 rpc_encode_decode!(
341     enum Delimiter {
342         Parenthesis,
343         Brace,
344         Bracket,
345         None,
346     }
347 );
348 rpc_encode_decode!(
349     enum Level {
350         Error,
351         Warning,
352         Note,
353         Help,
354     }
355 );
356 rpc_encode_decode!(struct LineColumn { line, column });
357 rpc_encode_decode!(
358     enum Spacing {
359         Alone,
360         Joint,
361     }
362 );
363
364 #[derive(Clone)]
365 pub enum TokenTree<G, P, I, L> {
366     Group(G),
367     Punct(P),
368     Ident(I),
369     Literal(L),
370 }
371
372 impl<G: Mark, P: Mark, I: Mark, L: Mark> Mark for TokenTree<G, P, I, L> {
373     type Unmarked = TokenTree<G::Unmarked, P::Unmarked, I::Unmarked, L::Unmarked>;
374     fn mark(unmarked: Self::Unmarked) -> Self {
375         match unmarked {
376             TokenTree::Group(tt) => TokenTree::Group(G::mark(tt)),
377             TokenTree::Punct(tt) => TokenTree::Punct(P::mark(tt)),
378             TokenTree::Ident(tt) => TokenTree::Ident(I::mark(tt)),
379             TokenTree::Literal(tt) => TokenTree::Literal(L::mark(tt)),
380         }
381     }
382 }
383 impl<G: Unmark, P: Unmark, I: Unmark, L: Unmark> Unmark for TokenTree<G, P, I, L> {
384     type Unmarked = TokenTree<G::Unmarked, P::Unmarked, I::Unmarked, L::Unmarked>;
385     fn unmark(self) -> Self::Unmarked {
386         match self {
387             TokenTree::Group(tt) => TokenTree::Group(tt.unmark()),
388             TokenTree::Punct(tt) => TokenTree::Punct(tt.unmark()),
389             TokenTree::Ident(tt) => TokenTree::Ident(tt.unmark()),
390             TokenTree::Literal(tt) => TokenTree::Literal(tt.unmark()),
391         }
392     }
393 }
394
395 rpc_encode_decode!(
396     enum TokenTree<G, P, I, L> {
397         Group(tt),
398         Punct(tt),
399         Ident(tt),
400         Literal(tt),
401     }
402 );