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
//! proc-macro crate for `microtype`

#![warn(clippy::all)]
#![deny(missing_docs)]

use codegen::codegen;
use parse::MicrotypeMacro;
use syn::parse_macro_input;

use crate::model::flatten;

extern crate proc_macro;

mod parse;
mod model;
mod codegen;


/// Macro to create microtype wrappers
/// 
/// See crate-level documentation for a more thorough explanation
///
/// Example usage:
/// ```ignore
/// # use microtype::microtype;
/// microtype! {
///   #[derive(Debug, Clone)]  // attributes on the outer type apply to all types in this block
///   String {
///     #[derive(PartialEq)]  // attributes can also be applied to a single microtype
///     Email,
///
///     NotPartialEqString,
///   }
///
///   // secret microtypes have extra restrictions to prevent accidental misuse of sensitive data
///   #[secret]
///   String {
///     Password
///   }
///   
///   // `#[secret(serialize)]` can be used to give a secret microtype a `Serialize` implementation
///   #[secret(serialize)]
///   String {
///     SessionToken
///   }
/// }
/// ```
#[proc_macro]
pub fn microtype(tokens: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let microtype = parse_macro_input!(tokens as MicrotypeMacro);
    let microtypes = flatten(microtype);
    codegen(microtypes).into()
}