1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
// #![allow(unused)]
//! `token-goblin` keeps a small goblin that munches your tokens and forges them
//! back into macros (here called `charms`). You feed it declarations, it chews,
//! and spits out something useful. Mostly.
//!
//! ## Forge your charm:
//! ```
//! # use token_goblin::munch;
//! #[munch]
//! fn my_charm(input: TokenStream) -> TokenStream {
//! // ..
//! # todo!()
//! }
//! ```
//!
//! That can be later used as `macro` in your code:
//! ```
//! # use token_goblin::munch;
//! # macro_rules! my_charm {
//! # ($($tt:tt)*) => { }
//! # }
//! my_charm!(foo bar);
//! ```
//!
//! ## Use `syn` types as input, when it needed:
//!
//! ```
//! # use token_goblin::munch;
//! # use syn::Ident;
//! #[munch]
//! fn my_charm(input: Ident) -> TokenStream {
//! quote!{#input}
//! }
//! let foo = 12;
//! let x = my_charm!(foo);
//! assert_eq!(x, 12);
//! ```
//!
//! ## Emit streamingly, like `println!`:
//! ```
//! # use token_goblin::munch;
//! #[munch]
//! fn add_foo_bar(_: TokenStream) {
//! // ..
//! output_str!("42");
//! output! {
//! + 53
//! };
//! }
//! let x = add_foo_bar!();
//! assert_eq!(x, 42 + 53);
//! ```
//!
//! **Hygiene from the box, preventing `charm` to access external variables:**
//! ```
//! # use token_goblin::munch;
//! #[munch]
//! fn my_charm(input: TokenStream) -> TokenStream {
//! // ..
//! quote!(foo)
//! }
//! let foo = 12;
//! let x = my_charm!(foo); // Failed: cannot find value `foo` in this scope.
//! assert_eq!(x, 12);
//! ```
//!
//! ## Provide a way to extend your types in future:
//! ```
//! # use token_goblin::Snif;
//! #[derive(Snif)]
//! pub struct MyStruct {
//! field: i32,
//! }
//! # macro_rules! some_macro {
//! # ($($tt:tt)*) => { }
//! # }
//!
//! // In other crate user can use it like this:
//! token_goblin::snif!(MyStruct in some_macro!());
//! ```
//!
//! For more docs, and examples checkout [README.md](https://github.com/vldm/token-goblin/blob/master/README.md)
//! or [`example_readme`](https://github.com/vldm/token-goblin/blob/master/example_readme/README.md)
//!
//! For future full example check out [`struct_of_arrays`](https://github.com/vldm/token-goblin/blob/master/token-goblin/examples/struct_of_arrays.rs).
//!
use TokenStream;
type Result<T, E = Error> = Result;
use MapCompileError;
/// Set to 'true' to enable debug prints.
pub const DEBUG: bool = cfg! || env_print_level;
/// Set to 'true' to enable printing of timings.
/// (Also requires `DEBUG` to be enabled, see above)
pub const PRINT_TIMINGS: bool = cfg! || env_print_level;
/// Set to 'true' to enable debug prints of environment variables.
/// (Also requires `DEBUG` to be enabled)
///
/// Internal only feature, not exposed to the user.
pub const DEBUG_ENV: bool = env_print_level;
/// Internal feature that prevent cache checking for dylib.
pub const NO_CACHE: bool = false;
// ===============================
// Macros entry points
// ===============================
///
/// This is an internal macro, used to proxy macro expansion calls to the real code in dylib.
/// Think of it as the goblin's errand-runner, fetching the real spell from the back room.
///
///
/// Munches your declaration and produces a new macro or `charm`.
///
/// Use it for module:
/// ```
/// #[token_goblin::munch]
/// mod my_module {
/// // entry fn should be public
/// pub fn inner_function(_: TokenStream) -> TokenStream {
/// //..
/// # todo!()
/// }
/// }
/// ```
/// or for function:
/// ```
/// #[token_goblin::munch]
/// fn my_function(_: TokenStream) -> TokenStream {
/// //..
/// # todo!()
/// }
/// ```
/// `munch` macro will expand to macro definitions like this:
/// ```
/// macro_rules! my_function {
/// ($($args:tt)*) => {
/// //..
/// };
/// }
/// ```
/// Goblin sniffs your item, and stores knowledge about it for future use.
///
/// Then it can be passed to other macros.
///
/// Example:
/// ```
/// #[token_goblin::derive_snif]
/// struct MyStruct {
/// field: i32,
/// }
///
/// // And use it like this:
///
/// # macro_rules! some_macro {
/// # ($($tt:tt)*) => { }
/// # }
///
/// token_goblin::snif!(MyStruct in some_macro!("extra tokens") );
/// ```
///
/// This will feed declaration of `MyStruct` as group of tokens inside `{..}`
/// to `some_macro!`, and pass `"extra tokens"` as arguments before it.
/// ```no_compile
/// some_macro!( "extra tokens" { struct MyStruct { field : i32, } })
/// ```
///
/// The version of `#[derive(Snif)]` that can be used as attribute for any item, not only struct/union/enum.
///
/// *Same goblin nose, just pointed at the rest of the menu.*
///
/// Use
/// ```
/// #[token_goblin::derive_snif]
/// fn my_function(_: u32) -> String {
/// //..
/// # todo!()
/// }
/// ```
/// Token goblin snif your item and vanish it.
/// So only knowledge about it is left in token-goblin's memory.
///
/// Useful as alternative to `derive_snif` when you don't need the item itself.
///
/// ```
/// #[token_goblin::vanish]
/// struct MyStruct {
/// field: i32,
/// }
/// // let x = MyStruct { field: 42 }; // will fail to compile, since no MyStruct is available anymore.
/// ```
///
/// But you can generate it at any time, by calling generated `MyStruct!` macro.
/// ```
/// #[token_goblin::vanish]
/// # struct MyStruct {
/// # field: i32,
/// # }
/// MyStruct!{}
/// // will expand to:
/// // struct MyStruct {
/// // field: 42,
/// // }
/// // and this will succesfully compile
/// let x = MyStruct { field: 42 };
/// ```
///
/// Ask token goblin to share knowledge about item into a `charm`.
///
/// ```
/// # use token_goblin::Snif;
/// #[derive(Snif)]
/// struct MyStruct {
/// field: i32,
/// }
/// ```
/// will generate a macro with similar name:
/// ```
/// macro_rules! MyStruct {
/// ($($tt:tt)*) => { }
/// }
/// ```
/// that later can be used like this:
/// ```
/// # use token_goblin::Snif;
/// # #[derive(Snif)]
/// # struct MyStruct {
/// # field: i32,
/// # }
/// # macro_rules! some_charm {
/// # ($($tt:tt)*) => { }
/// # }
/// # use token_goblin::snif;
///
/// snif!(MyStruct in some_charm!());
/// ```
///
/// Which will provide knowledge about `MyStruct` to `some_charm!` macro.
/// It is best used with `token-goblin-runtime::SniffedEntries` as input parameter.
/// ```
/// #[token_goblin::munch]
/// fn some_charm(input: SniffedEntries) -> TokenStream {
/// // ..
/// # todo!()
/// }
/// ```
///
/// Adaptor to function-like macro, that allows using them as derive macro.
///
/// *A little goblin disguise: a plain `charm` wears a `#[derive(..)]` hat.*
///
/// ```
/// # macro_rules! path_to_macro {
/// # ($($tt:tt)*) => { }
/// # }
/// #[derive(token_goblin::Spit)]
/// #[charm(path_to_macro)]
/// struct MyStruct {
/// field: i32,
/// }
/// ```
/// will expand to:
/// ```
/// # macro_rules! path_to_macro {
/// # ($($tt:tt)*) => { }
/// # }
/// struct MyStruct {
/// field: i32,
/// }
/// path_to_macro!(struct MyStruct { field: i32 });
/// ```
/// The goblin chews on your item and spits the result straight back into place.
/// Usefull where `#[derive(Spit)]` is not applicable, for items like trait, mod.
///
/// Note: unlike `#[derive(Spit)]` this macro will consume the item. So if you need it, your
/// `charm` should emit it back.
///
/// ```
/// # macro_rules! path_to_macro {
/// # ($($tt:tt)*) => { }
/// # }
/// # use token_goblin::spit;
///
/// #[spit(path_to_macro)]
/// trait Foo {
/// // ...
/// }
/// ```
/// will expand to:
/// ```
/// # macro_rules! path_to_macro {
/// # ($($tt:tt)*) => { }
/// # }
///
/// path_to_macro!(trait Foo { /* ... */ });
/// ```