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
//! This is a crate for automatically generating macros that expand to literal values of your data structure. Here's an example.
//! ```
//! use derive_lit::VecLit;
//!
//! #[derive(VecLit)]
//! struct GroceryList {
//! 	num_items: usize,
//! 	item_ids: Vec<usize>
//! }
//!
//! impl GroceryList {
//! 	fn new() -> Self {
//! 		Self {
//! 			num_items: 0,
//! 			item_ids: vec![]
//! 		}
//! 	}
//!
//! 	fn push(&mut self, item_id: usize) {
//! 		self.item_ids.push(item_id);
//! 	}
//! }
//!
//! fn main() {
//! 	let groceries = grocery_list![
//! 		0,
//! 		9,
//! 		8,
//! 		5
//! 	];
//!
//! 	// do something intersting with your GroceryList...
//! }
//! ```

extern crate proc_macro;

use heck::*;
use quote::{quote};
use syn::{
    parse_macro_input, Data, DeriveInput, Ident
};


/// A derive for auto-generating a macro to create literal values for vec-like data structures
///
/// The vec-like data structure must have the following methods-
/// - `fn new() -> Self`
/// - `fn push(elem)`
///
/// The auto-generated macro will be of the following form-
/// ```
/// # use derive_lit::VecLit;
/// # #[derive(VecLit)]
/// # struct MyStruct;
/// # impl MyStruct { fn new() -> Self {Self{}} fn push(&mut self, elem: usize) {}}
/// let x: MyStruct = my_struct! [0, 9, 3, 4, 5];
/// ```
#[proc_macro_derive(VecLit)]
pub fn derive_vec_lit(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let input = parse_macro_input!(input as DeriveInput);

    let name = input.ident;
    let data = input.data;

    let macro_name = Ident::new(&name.to_string().to_snake_case(), name.span());
    let struct_name = name.clone();

    if let Data::Struct(_) = data {
    } else {
        // TODO throw error
        panic!("expected a struct")
    }

    let expanded = quote! {
        macro_rules! #macro_name {
            ( $( $elem:expr ),* ) => {
                {
                    let mut temp = #struct_name::new();
                    $(
                        temp.push($elem);
                    )*
                    temp
                }
            };	
        }
    };

    // hand the output tokens back to the compiler.
    proc_macro::TokenStream::from(expanded)
}

/// A derive for auto-generating a macro to create literal values for vec-like data structures with a front at right end
///
/// The vec-like data structure must have the following methods-
/// - `fn new() -> Self`
/// - `fn push_front(elem)`
///
/// The auto-generated macro will be of the following form-
/// ```
/// # use derive_lit::VecFrontLit;
/// # #[derive(VecFrontLit)]
/// # struct MyStruct;
/// # impl MyStruct { fn new() -> Self {Self{}} fn push_front(&mut self, elem: usize) {}}
/// let x: MyStruct = my_struct! [0, 9, 3, 4, 5]; // front at right
/// ```
#[proc_macro_derive(VecFrontLit)]
pub fn derive_vec_front_lit(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let input = parse_macro_input!(input as DeriveInput);

    let name = input.ident;
    let data = input.data;

    let macro_name = Ident::new(&name.to_string().to_snake_case(), name.span());
    let struct_name = name.clone();

    if let Data::Struct(_) = data {
    } else {
        // TODO throw error
        panic!("expected a struct")
    }

    let expanded = quote! {
        macro_rules! #macro_name {
            ( $( $elem:expr ),* ) => {
                {
                    let mut temp = #struct_name::new();
                    $(
                        temp.push_front($elem);
                    )*
                    temp
                }
            };	
        }
    };

    // hand the output tokens back to the compiler.
    proc_macro::TokenStream::from(expanded)
}

/// A derive for auto-generating a macro to create literal values for set-like data structures
///
/// The set-like data structure must have the following methods-
/// - `fn new() -> Self`
/// - `fn insert(elem)`
///
/// The auto-generated macro will be of the following form-
/// ```
/// # use derive_lit::SetLit;
/// # #[derive(SetLit)]
/// # struct MyStruct;
/// # impl MyStruct { fn new() -> Self {Self{}} fn insert(&mut self, elem: usize) {}}
/// let x: MyStruct = my_struct! {0, 9, 3, 4, 5};
/// ```
#[proc_macro_derive(SetLit)]
pub fn derive_set_lit(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let input = parse_macro_input!(input as DeriveInput);

    let name = input.ident;
    let data = input.data;

    let macro_name = Ident::new(&name.to_string().to_snake_case(), name.span());
    let struct_name = name.clone();

    if let Data::Struct(_) = data {
    } else {
        // TODO throw error
        panic!("expected a struct")
    }

    let expanded = quote! {
        macro_rules! #macro_name {
            ( $( $elem:expr ),* ) => {
                {
                    let mut temp = #struct_name::new();
                    $(
                        temp.insert($elem);
                    )*
                    temp
                }
            };	
        }
    };

    // hand the output tokens back to the compiler.
    proc_macro::TokenStream::from(expanded)
}

/// A derive for auto-generating a macro to create literal values for map-like data structures
///
/// The map-like data structure must have the following methods-
/// - `fn new() -> Self`
/// - `fn insert(key, val)`
///
/// The auto-generated macro will be of the following form-
/// ```
/// # use derive_lit::MapLit;
/// # #[derive(MapLit)]
/// # struct MyStruct;
/// # impl MyStruct { fn new() -> Self {Self{}} fn insert(&mut self, key: &'static str, val: usize) {}}
/// let x: MyStruct = my_struct! {
///     "a" => 0,
///     "b" => 0,
///     "c" => 7
/// };
/// ```
#[proc_macro_derive(MapLit)]
pub fn derive_map_lit(input: proc_macro::TokenStream) -> proc_macro::TokenStream {
    let input = parse_macro_input!(input as DeriveInput);

    let name = input.ident;
    let data = input.data;

    let macro_name = Ident::new(&name.to_string().to_snake_case(), name.span());
    let struct_name = name.clone();

    if let Data::Struct(_) = data {
    } else {
        // TODO throw error
        panic!("expected a struct")
    }

    let expanded = quote! {
        macro_rules! #macro_name(
		    { $($key:expr => $val:expr),* } => {
		        {
		            let mut temp = #struct_name::new();
		            $(
		                temp.insert($key, $val);
		            )*
		            
		            temp
		        }
		     };
		);
    };

    // hand the output tokens back to the compiler.
    proc_macro::TokenStream::from(expanded)
}