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
//! Macros to work with `std::collections` that are mostly straight-forward syntactic sugars.
pub use std::collections::HashMap;
pub use std::collections::HashSet;

/// Counts the number of `args` passed to this macro invocation.
///
/// Returns the count as `usize`.
///
/// # Examples
///
/// ```
/// #[macro_use] extern crate colmac;
///
/// assert_eq!(0, count_args!());
/// assert_eq!(1, count_args!("one"));
/// assert_eq!(3, count_args!("one", "two", "three"));
/// ```
#[macro_export]
macro_rules! count_args {
    // base cases
    () => {
        0usize
    };
    ( $arg:expr ) => {
        1usize
    };
    // recurse
    ( $arg:expr, $( $rest:expr ),* ) => {
        1usize + count_args!( $( $rest ),* )
    };
}

/// Sugar for `String::new` and `String::from`.
///
/// # Examples
///
/// ```
/// #[macro_use] extern crate colmac;
///
/// // create an empty string
/// assert_eq!(String::new(), string!());
///
/// // syntactically identical
/// assert_eq!(String::from("abc"), string!("abc"));
/// ```
#[macro_export]
macro_rules! string {
    () => {
        String::new()
    };
    ( $arg:expr ) => {
        String::from($arg)
    };
}

/// Just like `vec!`, but for `std::collections::HashMap`.
///
/// This macro uses `count_args!` to preallocate the exact amount of memory
/// needed, so it's more efficient than simply iteratively inserting.
///
/// ```
/// #[macro_use] extern crate colmac;
///
/// use std::collections::HashMap;
///
/// // create an empty one
/// let empty: HashMap<u64, u64> = hashmap![];
/// assert_eq!(0, empty.len());
///
/// // literal initialization
/// let mut map_a = HashMap::new();
/// map_a.insert("a", 123);
/// map_a.insert("b", 456);
///
/// let map_b = hashmap!["a" => 123, "b" => 456];
/// assert_eq!(map_a, map_b);
/// ```
#[macro_export]
macro_rules! hashmap {
    () => {
        HashMap::new()
    };
    ( $( $key:expr => $value:expr ),* ) => {{
        let size = count_args!( $( $key ),* );
        let mut map = HashMap::with_capacity(size);
        $(
            map.insert($key, $value);
        )*
        map
    }};
}

/// Just like `vec!`, but for `std::collections::HashSet`.
///
/// This macro uses `count_args!` to preallocate the exact amount of memory
/// needed, so it's more efficient than simply iteratively inserting.
///
/// ```
/// #[macro_use] extern crate colmac;
///
/// use std::collections::HashSet;
///
/// // create an empty one
/// let empty: HashSet<u64> = hashset![];
/// assert_eq!(0, empty.len());
///
/// // literal initialization
/// let mut set_a = HashSet::new();
/// set_a.insert(123);
/// set_a.insert(456);
///
/// let set_b = hashset!(123, 456);
/// assert_eq!(set_a, set_b);
/// ```
#[macro_export]
macro_rules! hashset {
    () => {
        HashSet::new()
    };
    ( $( $elem:expr ),* ) => {{
        let size = count_args!( $($elem),* );
        let mut set = HashSet::with_capacity(size);
        $(
            set.insert($elem);
        )*
        set
    }};
}

/// Sorts the input collection that impl's the trait `std::ops::IndexMut`.
///
/// There are two ways to invoke this macro:
/// 1. with one argument, a mutable collection
///     1. uses [`slice::sort_unstable`](https://doc.rust-lang.org/std/primitive.slice.html#method.sort_unstable) to sort
/// 1. with two arguments, a mutable collection followed by a closure
///     1. passes the closure to [`slice::sort_unstable_by`](https://doc.rust-lang.org/std/primitive.slice.html#method.sort_unstable_by) to sort
///
/// # Examples
///
/// ```
/// #[macro_use] extern crate colmac;
/// use std::cmp::Ordering::{Equal, Greater, Less};
///
/// // sort without a custom closure
/// let mut v1 = vec![2, 4, -1];
/// sort!(v1);
/// assert_eq!(vec![-1, 2, 4], v1);
///
/// // sort with; sort in reverse order
/// let mut v2 = vec![2, 4, -1];
/// sort!(v2, |a, b| match a.cmp(b) {
///     Less => Greater,
///     Greater => Less,
///     Equal => Equal,
/// });
/// assert_eq!(vec![4, 2, -1], v2);
/// ```
#[macro_export]
macro_rules! sort {
    ( $collection:expr ) => {
        (&mut $collection[..]).sort_unstable();
    };
    ( $collection:expr, $compare_fn:expr ) => {
        (&mut $collection[..]).sort_unstable_by($compare_fn);
    };
}

/// Creates a sorted `Vec` with cloned elements of the input collection, leaving the original
/// collection untouched.
///
/// The input collection should support `.iter()` method that returns an `Iterator` over its
/// elemnts.
///
/// There are two ways to invoke this macro:
/// 1. with one argument, a mutable collection
///     1. uses [`slice::sort_unstable`](https://doc.rust-lang.org/std/primitive.slice.html#method.sort_unstable) to sort
/// 1. with two arguments, a mutable collection followed by a closure
///     1. passes the closure to [`slice::sort_unstable_by`](https://doc.rust-lang.org/std/primitive.slice.html#method.sort_unstable_by) to sort
///
/// # Examples
///
/// ```
/// #[macro_use] extern crate colmac;
/// use std::cmp::Ordering::{Equal, Greater, Less};
///
/// // sort without a custom closure
/// let v1 = vec![2, 4, -1];
/// let v1_sorted = sorted!(v1);
/// assert_eq!(vec![2, 4, -1], v1);  // v1 is not modified
/// assert_eq!(vec![-1, 2, 4], v1_sorted);
///
/// // sort with; sort in reverse order
/// let v2 = vec![2, 4, -1];
/// let v2_sorted = sorted!(v2, |a, b| match a.cmp(b) {
///     Less => Greater,
///     Greater => Less,
///     Equal => Equal,
/// });
/// assert_eq!(vec![2, 4, -1], v2);  // v2 is not modified
/// assert_eq!(vec![4, 2, -1], v2_sorted);
/// ```
#[macro_export]
macro_rules! sorted {
    ( $collection:expr ) => {{
        let mut clones: Vec<_> = $collection.iter().cloned().collect();
        sort!(clones);
        clones
    }};
    ( $collection:expr, $compare_fn:expr ) => {{
        let mut clones: Vec<_> = $collection.iter().cloned().collect();
        sort!(clones, $compare_fn);
        clones
    }};
}

/// Creates a sorted `Vec<f64>` from the input.
///
/// This is a syntactic sugar for calling `sorted!` with the closure
/// `|a, b| a.partial_cmp(b).unwrap()`.
///
/// # Examples
///
/// ```
/// #[macro_use] extern crate colmac;
/// # use std::cmp::Ordering::{Equal, Greater, Less};
///
/// // sort some collection that impl's `IntoIterator`
/// let vec = vec![2.0, 4.0, -1.0];
///
/// let sorted_vec = sorted_f64!(vec);
/// let expected = vec![-1.0, 2.0, 4.0];
///
/// assert_eq!(expected, sorted_vec);
/// ```
#[macro_export]
macro_rules! sorted_f64 {
    ( $collection:expr ) => {
        sorted!($collection, |a, b| a.partial_cmp(b).unwrap())
    };
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::cmp::Ordering::{Equal, Greater, Less};

    mod count_args {
        use super::*;

        #[test]
        fn zero() {
            let expected = 0;
            let result = count_args!();
            assert_eq!(expected, result);
        }
        #[test]
        fn one() {
            let expected = 1;
            let result = count_args!(10);
            assert_eq!(expected, result);
        }
        #[test]
        fn many() {
            let expected = 4;
            let result = count_args!(10, 20, 30, 40);
            assert_eq!(expected, result);
        }
    }

    mod hashmap {
        use super::*;

        #[test]
        fn zero() {
            let expected: HashMap<usize, usize> = HashMap::new();
            let result: HashMap<usize, usize> = hashmap!();
            assert_eq!(expected, result);
        }
        #[test]
        fn one() {
            let key = "abcde";
            let expected: HashMap<String, usize> =
                [(string!(key), 3usize)].iter().cloned().collect();
            let result: HashMap<String, usize> = hashmap!(string!(key) => 3usize);
            assert_eq!(expected, result);
        }
        #[test]
        fn many() {
            let expected: HashMap<String, usize> = vec![
                (string!("a"), 10usize),
                (string!("ab"), 20usize),
                (string!("abc"), 30usize),
            ]
            .into_iter()
            .collect();
            let result = hashmap!(
                string!("a") => 10usize,
                string!("ab") => 20usize,
                string!("abc") => 30usize
            );
            assert_eq!(expected, result);
        }
    }

    mod hashset {
        use super::*;

        #[test]
        fn zero() {
            let expected: HashSet<usize> = HashSet::new();
            let result: HashSet<usize> = hashset!();
            assert_eq!(expected, result);
        }
        #[test]
        fn one() {
            let name = string!("Jack");
            let expected: HashSet<String> = vec![&name].into_iter().cloned().collect();
            let result: HashSet<String> = hashset!(name);
            assert_eq!(expected, result);
        }
        #[test]
        fn many() {
            let expected: HashSet<&str> = vec!["a", "b", "c"].into_iter().collect();
            let result: HashSet<&str> = hashset!("a", "b", "c");
            assert_eq!(expected, result);
        }
    }

    mod sort {
        use super::*;

        #[test]
        fn vec() {
            let expected = vec![-14, -1, 0, 2, 3, 4, 8];

            let mut v = vec![4, 2, 3, -1, -14, 0, 8];
            sort!(v);
            assert_eq!(expected, v);
        }
        #[test]
        fn array() {
            let expected = vec![-14, -1, 0, 2, 3, 4, 8];

            let mut v = [4, 2, 3, -1, -14, 0, 8];
            sort!(v);
            assert_eq!(expected, v);
        }
        #[test]
        fn vec_reverse_sort() {
            let expected = vec![8, 4, 3, 2, 0, -1, -14];

            let mut v = vec![4, 2, 3, -1, -14, 0, 8];
            sort!(v, |a, b| match a.cmp(b) {
                Less => Greater,
                Greater => Less,
                Equal => Equal,
            });
            assert_eq!(expected, v);
        }
    }

    mod sorted {
        use super::*;

        #[test]
        fn vec() {
            let expected = vec![-14, -1, 0, 2, 3, 4, 8];

            let v = vec![4, 2, 3, -1, -14, 0, 8];
            let result = sorted!(v);
            assert_eq!(expected, result);
            assert_eq!(vec![-14, -1, 0, 2, 3, 4, 8], expected); // unmodified
        }
        #[test]
        fn hashset() {
            let expected = vec![-14, -1, 0, 2, 3, 4, 8];

            let v = hashset![4, 2, 3, -1, -14, 0, 8];
            let result = sorted!(v);
            assert_eq!(expected, result);
        }
        #[test]
        fn array() {
            let expected = vec![-14, -1, 0, 2, 3, 4, 8];

            let v = [4, 2, 3, -1, -14, 0, 8];
            let result = sorted!(v);
            assert_eq!(expected, result);
        }
        #[test]
        fn vec_reverse_sort() {
            let expected = vec![8, 4, 3, 2, 0, -1, -14];

            let v = vec![4, 2, 3, -1, -14, 0, 8];
            let result = sorted!(v, |a, b| match a.cmp(b) {
                Less => Greater,
                Greater => Less,
                Equal => Equal,
            });
            assert_eq!(expected, result);
            assert_eq!(vec![8, 4, 3, 2, 0, -1, -14], expected); // unmodified
        }
    }

    mod sorted_f64 {
        use super::*;

        #[test]
        fn vec() {
            let expected = vec![-14.0, -1.0, 0.0, 2.0, 3.0, 4.0, 8.0];

            let v = vec![4.0, 2.0, 3.0, -1.0, -14.0, 0.0, 8.0];
            let result = sorted_f64!(v);
            assert_eq!(expected, result);
        }
        #[test]
        fn array() {
            let expected = vec![-14.0, -1.0, 0.0, 2.0, 3.0, 4.0, 8.0];

            let v = [4.0, 2.0, 3.0, -1.0, -14.0, 0.0, 8.0];
            let result = sorted_f64!(v);
            assert_eq!(expected, result);
        }
    }
}