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 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462
/* Copyright ⓒ 2016 rust-custom-derive contributors. Licensed under the MIT license (see LICENSE or <http://opensource.org /licenses/MIT>) or the Apache License, Version 2.0 (see LICENSE of <http://www.apache.org/licenses/LICENSE-2.0>), at your option. All files in the project carrying such notice may not be copied, modified, or distributed except according to those terms. */ /*! **Note**: This crate has been superseded by `macro-attr`. This crate provides a macro that enables the use of custom `derive` attributes. To use it, make sure you link to the crate like so: ```rust #[macro_use] extern crate custom_derive; # macro_rules! Dummy { (() struct $name:ident;) => {}; } # custom_derive! { #[derive(Clone, Dummy)] struct Foo; } # fn main() { let _ = Foo; } ``` > **Note**: the `custom_derive!` macro itself is not documented, as the automatic documentation for it would be uselessly huge and incomprehensible. <style type="text/css"> .link-block { font-family: "Fira Sans"; } .link-block > p { display: inline-block; } .link-block > p > strong { font-weight: 500; margin-right: 1em; } .link-block > ul { display: inline-block; padding: 0; list-style: none; } .link-block > ul > li { font-size: 0.8em; background-color: #eee; border: 1px solid #ccc; padding: 0.3em; display: inline-block; } </style> <span></span><div class="link-block"> **Links** * [Latest Release](https://crates.io/crates/custom_derive/) * [Latest Docs](https://docs.rs/crate/custom_derive/) * [Repository](https://github.com/DanielKeep/rust-custom-derive/tree/custom_derive-master/) <span></span></div> # Usage The macro should be used to wrap an entire *single* `enum` or `struct` declaration, including its attributes (both `derive` and others). All derivation attributes which the macro does *not* recognise will be assumed to be custom, and treated accordingly. `custom_derive!` assumes that custom derivations are implemented as macros (of the same name). For example, here is a simple derivation macro: ```rust #[macro_use] extern crate custom_derive; trait TypeName { fn type_name() -> &'static str; } trait ReprType { type Repr; } macro_rules! TypeName { (() $(pub)* enum $name:ident $($tail:tt)*) => { TypeName! { @impl $name } }; (() $(pub)* struct $name:ident $($tail:tt)*) => { TypeName! { @impl $name } }; (@impl $name:ident) => { impl TypeName for $name { fn type_name() -> &'static str { stringify!($name) } } }; } macro_rules! TryFrom { (($repr:ty) $(pub)* enum $name:ident $($tail:tt)*) => { impl ReprType for $name { type Repr = $repr; } }; } custom_derive! { #[allow(dead_code)] #[repr(u8)] #[derive(Clone, Copy, Debug, TryFrom(u8), TypeName)] enum Foo { A, B } } fn main() { let foo = Foo::B; let v = foo as <Foo as ReprType>::Repr; let msg = format!("{}: {:?} ({:?})", Foo::type_name(), foo, v); assert_eq!(msg, "Foo: B (1)"); } ``` First, note that `custom_derive!` passes any arguments on the derivation attribute to the macro. In the case of attributes *without* any arguments, `()` is passed instead. Secondly, the macro is passed the entire item, *sans* attributes. It is the derivation macro's job to parse the item correctly. Third, each derivation macro is expected to result in zero or more items, not including the item itself. As a result, it is *not* possible to mutate the item in any way, or attach additional attributes to it. Finally, `@impl` is merely a trick to pack multiple, different functions into a single macro. The sequence has no special meaning; it is simply *distinct* from the usual invocation syntax. */ #![cfg_attr(not(feature = "std"), no_std)] #[doc(hidden)] #[macro_export] macro_rules! custom_derive { /* > **Convention**: a capture named `$fixed` is used for any part of a recursive rule that is needed in the terminal case, but is not actually being *used* for the recursive part. This avoids having to constantly repeat the full capture pattern (and makes changing it easier). # Primary Invocation Forms These need to catch any valid form of struct or enum. */ ( $(#[$($attrs:tt)*])* enum $($it:tt)* ) => { custom_derive! { @split_attrs ($(#[$($attrs)*],)*), (), (), (enum $($it)*) } }; ( $(#[$($attrs:tt)*])* pub $($it:tt)* ) => { custom_derive! { @split_attrs ($(#[$($attrs)*],)*), (), (), (pub $($it)*) } }; ( $(#[$($attrs:tt)*])* struct $($it:tt)* ) => { custom_derive! { @split_attrs ($(#[$($attrs)*],)*), (), (), (struct $($it)*) } }; /* # `@split_attrs` This is responsible for dividing all attributes on an item into two groups: - `#[derive(...)]` - Everything else. As part of this, it also explodes `#[derive(A, B(..), C, ...)]` into `A, B(..), C, ...`. This is to simplify the next stage. */ ( @split_attrs (), $non_derives:tt, $derives:tt, $it:tt ) => { custom_derive! { @split_derive_attrs { $non_derives, $it }, $derives, (), () } }; ( @split_attrs (#[derive($($new_drv:ident $(($($new_drv_args:tt)*))*),* $(,)*)], $(#[$($attrs:tt)*],)*), $non_derives:tt, ($($derives:ident,)*), $it:tt ) => { custom_derive! { @split_attrs ($(#[$($attrs)*],)*), $non_derives, ($($derives,)* $($new_drv $(($($new_drv_args)*))*,)*), $it } }; ( @split_attrs (#[$new_attr:meta], $(#[$($attrs:tt)*],)*), ($($non_derives:tt)*), $derives:tt, $it:tt ) => { custom_derive! { @split_attrs ($(#[$($attrs)*],)*), ($($non_derives)* #[$new_attr],), $derives, $it } }; /* # `@split_derive_attrs` This is responsible for taking the list of derivation attributes and splitting them into "built-in" and "custom" groups. The list of built-in derives currently supported is: Clone, Hash, RustcEncodable, RustcDecodable, PartialEq, Eq, PartialOrd, Ord, Debug, Default, Send, Sync, Copy. Anything not on that list is considered "custom". And yes, as far as I can see, we *have* to have a separate rule for each of those. What I wouldn't give for an alternation pattern... */ (@split_derive_attrs { ($(#[$($non_derives:tt)*],)*), ($($it:tt)*) }, (), (), ($($user_drvs:tt)*) ) => { custom_derive! { @as_item $(#[$($non_derives)*])* $($it)* } custom_derive! { @expand_user_drvs ($($user_drvs)*), ($($it)*) } }; (@split_derive_attrs { ($(#[$($non_derives:tt)*],)*), ($($it:tt)*) }, (), ($($bi_drvs:ident,)+), ($($user_drvs:tt)*) ) => { custom_derive! { @as_item #[derive($($bi_drvs,)+)] $(#[$($non_derives)*])* $($it)* } custom_derive! { @expand_user_drvs ($($user_drvs)*), ($($it)*) } }; (@split_derive_attrs $fixed:tt, (Hash, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* Hash,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (Clone, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* Clone,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (RustcEncodable, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* RustcEncodable,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (RustcDecodable, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* RustcDecodable,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (PartialEq, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* PartialEq,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (Eq, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* Eq,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (PartialOrd, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* PartialOrd,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (Ord, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* Ord,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (Debug, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* Debug,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (Default, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* Default,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (Send ,$($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* Send,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (Sync, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* Sync,), $user_drvs } }; (@split_derive_attrs $fixed:tt, (Copy, $($tail:tt)*), ($($bi_drvs:ident,)*), $user_drvs:tt ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), ($($bi_drvs,)* Copy,), $user_drvs } }; /* ## Custom Derivations Now we can handle the custom derivations. There are two forms we care about: those *with* an argument, and those *without*. The *reason* we care is that, in order to simplify the derivation macros, we want to detect the argument-less case and generate an empty pair of parens. */ (@split_derive_attrs $fixed:tt, ($new_user:ident, $($tail:tt)*), $bi_drvs:tt, ($($user_drvs:tt)*) ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), $bi_drvs, ($($user_drvs)* $new_user(),) } }; (@split_derive_attrs $fixed:tt, ($new_user:ident ($($new_user_args:tt)*), $($tail:tt)*), $bi_drvs:tt, ($($user_drvs:tt)*) ) => { custom_derive! { @split_derive_attrs $fixed, ($($tail)*), $bi_drvs, ($($user_drvs)* $new_user($($new_user_args)*),) } }; /* # `@expand_user_drvs` Finally, we have a recursive rule for expanding user derivations. This is basically just using the derivation name as a macro identifier. This *has* to be recursive because we need to expand two independent repetition sequences simultaneously, and this causes `macro_rules!` to throw a wobbly. Don't want that. So, recursive it is. */ (@expand_user_drvs (), ($($it:tt)*) ) => {}; (@expand_user_drvs ($user_drv:ident $arg:tt, $($tail:tt)*), ($($it:tt)*) ) => { $user_drv! { $arg $($it)* } custom_derive! { @expand_user_drvs ($($tail)*), ($($it)*) } }; /* # Miscellaneous Rules */ (@as_item $($i:item)*) => {$($i)*}; }