• Home
Name Date Size #Lines LOC

..--

benches/03-May-2024-172140

src/03-May-2024-32,07325,302

tests/03-May-2024-9,5789,126

.cargo_vcs_info.jsonD03-May-202474 65

Android.bpD03-May-2024565 3028

Cargo.tomlD03-May-20242 KiB8269

Cargo.toml.origD03-May-20241.4 KiB6959

LICENSE-APACHED03-May-202410.6 KiB202169

LICENSE-MITD03-May-20241,023 2421

README.mdD03-May-202410.1 KiB292219

build.rsD03-May-20241.5 KiB6449

README.md

1Parser for Rust source code
2===========================
3
4[![Build Status](https://api.travis-ci.org/dtolnay/syn.svg?branch=master)](https://travis-ci.org/dtolnay/syn)
5[![Latest Version](https://img.shields.io/crates/v/syn.svg)](https://crates.io/crates/syn)
6[![Rust Documentation](https://img.shields.io/badge/api-rustdoc-blue.svg)](https://docs.rs/syn/1.0/syn/)
7[![Rustc Version 1.31+](https://img.shields.io/badge/rustc-1.31+-lightgray.svg)](https://blog.rust-lang.org/2018/12/06/Rust-1.31-and-rust-2018.html)
8
9Syn is a parsing library for parsing a stream of Rust tokens into a syntax tree
10of Rust source code.
11
12Currently this library is geared toward use in Rust procedural macros, but
13contains some APIs that may be useful more generally.
14
15- **Data structures** — Syn provides a complete syntax tree that can represent
16  any valid Rust source code. The syntax tree is rooted at [`syn::File`] which
17  represents a full source file, but there are other entry points that may be
18  useful to procedural macros including [`syn::Item`], [`syn::Expr`] and
19  [`syn::Type`].
20
21- **Derives** — Of particular interest to derive macros is [`syn::DeriveInput`]
22  which is any of the three legal input items to a derive macro. An example
23  below shows using this type in a library that can derive implementations of a
24  user-defined trait.
25
26- **Parsing** — Parsing in Syn is built around [parser functions] with the
27  signature `fn(ParseStream) -> Result<T>`. Every syntax tree node defined by
28  Syn is individually parsable and may be used as a building block for custom
29  syntaxes, or you may dream up your own brand new syntax without involving any
30  of our syntax tree types.
31
32- **Location information** — Every token parsed by Syn is associated with a
33  `Span` that tracks line and column information back to the source of that
34  token. These spans allow a procedural macro to display detailed error messages
35  pointing to all the right places in the user's code. There is an example of
36  this below.
37
38- **Feature flags** — Functionality is aggressively feature gated so your
39  procedural macros enable only what they need, and do not pay in compile time
40  for all the rest.
41
42[`syn::File`]: https://docs.rs/syn/1.0/syn/struct.File.html
43[`syn::Item`]: https://docs.rs/syn/1.0/syn/enum.Item.html
44[`syn::Expr`]: https://docs.rs/syn/1.0/syn/enum.Expr.html
45[`syn::Type`]: https://docs.rs/syn/1.0/syn/enum.Type.html
46[`syn::DeriveInput`]: https://docs.rs/syn/1.0/syn/struct.DeriveInput.html
47[parser functions]: https://docs.rs/syn/1.0/syn/parse/index.html
48
49If you get stuck with anything involving procedural macros in Rust I am happy to
50provide help even if the issue is not related to Syn. Please file a ticket in
51this repo.
52
53*Version requirement: Syn supports rustc 1.31 and up.*
54
55[*Release notes*](https://github.com/dtolnay/syn/releases)
56
57<br>
58
59## Resources
60
61The best way to learn about procedural macros is by writing some. Consider
62working through [this procedural macro workshop][workshop] to get familiar with
63the different types of procedural macros. The workshop contains relevant links
64into the Syn documentation as you work through each project.
65
66[workshop]: https://github.com/dtolnay/proc-macro-workshop
67
68<br>
69
70## Example of a derive macro
71
72The canonical derive macro using Syn looks like this. We write an ordinary Rust
73function tagged with a `proc_macro_derive` attribute and the name of the trait
74we are deriving. Any time that derive appears in the user's code, the Rust
75compiler passes their data structure as tokens into our macro. We get to execute
76arbitrary Rust code to figure out what to do with those tokens, then hand some
77tokens back to the compiler to compile into the user's crate.
78
79[`TokenStream`]: https://doc.rust-lang.org/proc_macro/struct.TokenStream.html
80
81```toml
82[dependencies]
83syn = "1.0"
84quote = "1.0"
85
86[lib]
87proc-macro = true
88```
89
90```rust
91extern crate proc_macro;
92
93use proc_macro::TokenStream;
94use quote::quote;
95use syn::{parse_macro_input, DeriveInput};
96
97#[proc_macro_derive(MyMacro)]
98pub fn my_macro(input: TokenStream) -> TokenStream {
99    // Parse the input tokens into a syntax tree
100    let input = parse_macro_input!(input as DeriveInput);
101
102    // Build the output, possibly using quasi-quotation
103    let expanded = quote! {
104        // ...
105    };
106
107    // Hand the output tokens back to the compiler
108    TokenStream::from(expanded)
109}
110```
111
112The [`heapsize`] example directory shows a complete working implementation of a
113derive macro. It works on any Rust compiler 1.31+. The example derives a
114`HeapSize` trait which computes an estimate of the amount of heap memory owned
115by a value.
116
117[`heapsize`]: examples/heapsize
118
119```rust
120pub trait HeapSize {
121    /// Total number of bytes of heap memory owned by `self`.
122    fn heap_size_of_children(&self) -> usize;
123}
124```
125
126The derive macro allows users to write `#[derive(HeapSize)]` on data structures
127in their program.
128
129```rust
130#[derive(HeapSize)]
131struct Demo<'a, T: ?Sized> {
132    a: Box<T>,
133    b: u8,
134    c: &'a str,
135    d: String,
136}
137```
138
139<br>
140
141## Spans and error reporting
142
143The token-based procedural macro API provides great control over where the
144compiler's error messages are displayed in user code. Consider the error the
145user sees if one of their field types does not implement `HeapSize`.
146
147```rust
148#[derive(HeapSize)]
149struct Broken {
150    ok: String,
151    bad: std::thread::Thread,
152}
153```
154
155By tracking span information all the way through the expansion of a procedural
156macro as shown in the `heapsize` example, token-based macros in Syn are able to
157trigger errors that directly pinpoint the source of the problem.
158
159```
160error[E0277]: the trait bound `std::thread::Thread: HeapSize` is not satisfied
161 --> src/main.rs:7:5
162  |
1637 |     bad: std::thread::Thread,
164  |     ^^^^^^^^^^^^^^^^^^^^^^^^ the trait `HeapSize` is not implemented for `std::thread::Thread`
165```
166
167<br>
168
169## Parsing a custom syntax
170
171The [`lazy-static`] example directory shows the implementation of a
172`functionlike!(...)` procedural macro in which the input tokens are parsed using
173Syn's parsing API.
174
175[`lazy-static`]: examples/lazy-static
176
177The example reimplements the popular `lazy_static` crate from crates.io as a
178procedural macro.
179
180```
181lazy_static! {
182    static ref USERNAME: Regex = Regex::new("^[a-z0-9_-]{3,16}$").unwrap();
183}
184```
185
186The implementation shows how to trigger custom warnings and error messages on
187the macro input.
188
189```
190warning: come on, pick a more creative name
191  --> src/main.rs:10:16
192   |
19310 |     static ref FOO: String = "lazy_static".to_owned();
194   |                ^^^
195```
196
197<br>
198
199## Testing
200
201When testing macros, we often care not just that the macro can be used
202successfully but also that when the macro is provided with invalid input it
203produces maximally helpful error messages. Consider using the [`trybuild`] crate
204to write tests for errors that are emitted by your macro or errors detected by
205the Rust compiler in the expanded code following misuse of the macro. Such tests
206help avoid regressions from later refactors that mistakenly make an error no
207longer trigger or be less helpful than it used to be.
208
209[`trybuild`]: https://github.com/dtolnay/trybuild
210
211<br>
212
213## Debugging
214
215When developing a procedural macro it can be helpful to look at what the
216generated code looks like. Use `cargo rustc -- -Zunstable-options
217--pretty=expanded` or the [`cargo expand`] subcommand.
218
219[`cargo expand`]: https://github.com/dtolnay/cargo-expand
220
221To show the expanded code for some crate that uses your procedural macro, run
222`cargo expand` from that crate. To show the expanded code for one of your own
223test cases, run `cargo expand --test the_test_case` where the last argument is
224the name of the test file without the `.rs` extension.
225
226This write-up by Brandon W Maister discusses debugging in more detail:
227[Debugging Rust's new Custom Derive system][debugging].
228
229[debugging]: https://quodlibetor.github.io/posts/debugging-rusts-new-custom-derive-system/
230
231<br>
232
233## Optional features
234
235Syn puts a lot of functionality behind optional features in order to optimize
236compile time for the most common use cases. The following features are
237available.
238
239- **`derive`** *(enabled by default)* — Data structures for representing the
240  possible input to a derive macro, including structs and enums and types.
241- **`full`** — Data structures for representing the syntax tree of all valid
242  Rust source code, including items and expressions.
243- **`parsing`** *(enabled by default)* — Ability to parse input tokens into a
244  syntax tree node of a chosen type.
245- **`printing`** *(enabled by default)* — Ability to print a syntax tree node as
246  tokens of Rust source code.
247- **`visit`** — Trait for traversing a syntax tree.
248- **`visit-mut`** — Trait for traversing and mutating in place a syntax tree.
249- **`fold`** — Trait for transforming an owned syntax tree.
250- **`clone-impls`** *(enabled by default)* — Clone impls for all syntax tree
251  types.
252- **`extra-traits`** — Debug, Eq, PartialEq, Hash impls for all syntax tree
253  types.
254- **`proc-macro`** *(enabled by default)* — Runtime dependency on the dynamic
255  library libproc_macro from rustc toolchain.
256
257<br>
258
259## Proc macro shim
260
261Syn operates on the token representation provided by the [proc-macro2] crate
262from crates.io rather than using the compiler's built in proc-macro crate
263directly. This enables code using Syn to execute outside of the context of a
264procedural macro, such as in unit tests or build.rs, and we avoid needing
265incompatible ecosystems for proc macros vs non-macro use cases.
266
267In general all of your code should be written against proc-macro2 rather than
268proc-macro. The one exception is in the signatures of procedural macro entry
269points, which are required by the language to use `proc_macro::TokenStream`.
270
271The proc-macro2 crate will automatically detect and use the compiler's data
272structures when a procedural macro is active.
273
274[proc-macro2]: https://docs.rs/proc-macro2/1.0.0/proc_macro2/
275
276<br>
277
278#### License
279
280<sup>
281Licensed under either of <a href="LICENSE-APACHE">Apache License, Version
2822.0</a> or <a href="LICENSE-MIT">MIT license</a> at your option.
283</sup>
284
285<br>
286
287<sub>
288Unless you explicitly state otherwise, any contribution intentionally submitted
289for inclusion in this crate by you, as defined in the Apache-2.0 license, shall
290be dual licensed as above, without any additional terms or conditions.
291</sub>
292