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
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
// Copyright 2019 numid Developers
//
// Licensed under the MIT license <LICENSE or
// http://opensource.org/licenses/MIT>. This file may not be
// copied, modified, or distributed except according to those terms.

/*!
This crate provide the `numid!` macro for creating numerical id.

Each new instance of your id is guaranteed to have a higher value than 
the previous one created. However, the value range less than or equal 
to `INITIAL_VALUE` is free to use, and multiple instances with the same value 
can be created.

Use `new`, `default` or `create_maybe` for creating unique id.

Use `create_lower` or `const_create_lower` for creating free id.

Id created with `reproduce` are unique or free depending on the id used.

# Syntax

```ignore
numid!([pub] struct NAME [(TYPE)] [-> CONSTANT]);
```
If not indicated, TYPE=`u64` and CONSTANT=`0`.

# Attributes

Attributes can be attached to the generated `struct` by placing them
before the `struct` keyword (or `pub` if public).

# Examples

```rust
use numid::numid;

numid!(pub struct MyId -> 10);

fn main() {
    let id1 = MyId::new();
    let id2 = MyId::new();

    assert!(id2 > id1);
    assert_eq!(id1.value(), 11);
    assert_eq!(id2.value(), 12);
}
```

See [`example`](./example/index.html) for documentation of code generated by `numid!`.

# Trait implementations

The `Copy`, `Clone`, `PartialEq`, `Eq`, `PartialOrd`, `Ord`, `Hash` and `Debug`
traits automatically derived for the `struct` using the `derive` attribute.
Additional traits can be derived by providing an explicit `derive` attribute.

The `Display`, `Binary`, `Octal`, `LowerHex`, `UpperHex` and `Default` traits are implemented for
the `struct`. When calling `default()`, the struct is initialized with a new value instead of `0`.
Your own version of `Display` can be implemented by disabling the `display` default feature.

The behavior of the `Clone` trait can be modified with built-in attribut :
- `@CloneIsClone` : default behavior, can be ignored
- `@CloneIsNew` : `clone()` call `new()`
- `@CloneIsReproduce` : `clone()` call `reproduce()`
This built-in attribut must be placed between the attributs and the visibility argument.

# Methods

The following methods are defined for the generated `struct` (only `value` and `reproduce` need a instance) :

- `new` : create a new id
- `value` : get the id value
- `current_value` : get the value of the last id or initial_value if no id created
- `initial_value` : get the value defined when calling `numid!`
- `replace_current_value` : see  [`example::NumId::replace_current_value`](./example/struct.NumId.html#method.replace_current_value)
- `create_maybe` : see  [`example::NumId::create_maybe`](./example/struct.NumId.html#method.create_maybe)
- `create_lower` : see  [`example::NumId::create_lower`](./example/struct.NumId.html#method.create_lower)
- `const_create_lower` : see [`example::NumId::const_create_lower`](./example/struct.NumId.html#method.const_create_lower)
- `reproduce` : see [`example::NumId::reproduce`](./example/struct.NumId.html#method.reproduce)

See [`example::NumId`](./example/struct.NumId.html) for more documentation of  methods generated by `numid!`.

# Crate feature

This crate provides the `display` feature enabled by default who automatically implemente the `Display` trait
in the structure generated by the `numid!` macro.  If you want to implemente your own version of `Display`,
add `default-features = false` in the `dependencies.numid` section of your `Cargo.toml`.
*/

#![cfg_attr(not(test), no_std)]
#![doc(html_root_url = "https://docs.rs/numid")]
#![warn(missing_docs)]

#[doc(hidden)]
pub extern crate const_fn_assert as _const_fn_assert;

#[doc(hidden)]
pub extern crate core as _core;

/// # Examples
/// ```
/// use numid::numid;
///
/// numid!(struct Id); // basic id
/// numid!(pub struct Id2); // public
/// numid!(pub(crate) struct Id3); // restricted public
/// numid!(#[doc(hidden)] struct Id4); // with attribute
/// numid!(struct Id5 -> 100); // init const specified
/// numid!(struct Id6(u128)); // type specified
/// numid!(@CloneIsReproduce struct Id7); // with in-macro special attribute
/// numid!(#[doc(hidden)] @CloneIsNew pub struct Id8(u32) -> 10); // all the thing you can want
/// ```
#[macro_export]
macro_rules! numid {
    ($(#[$attr:meta])* $vis:vis struct $name:ident) => {
        numid!{$(#[$attr])* @CloneIsClone $vis struct $name(u64) -> 0 }
    };
    ($(#[$attr:meta])* $vis:vis struct $name:ident -> $init_val:expr) => {
        numid!{$(#[$attr])* @CloneIsClone $vis struct $name(u64) -> $init_val }
    };
    ($(#[$attr:meta])* $vis:vis struct $name:ident($ty:ty)) => {
        numid!{$(#[$attr])* @CloneIsClone $vis struct $name($ty) -> 0 }
    };
    ($(#[$attr:meta])* $vis:vis struct $name:ident($ty:ty) -> $init_val:expr) => {
        numid!{$(#[$attr])* @CloneIsClone $vis struct $name($ty) -> $init_val }
    };
    ($(#[$attr:meta])* $(@$mattr:ident)+ $vis:vis struct $name:ident) => {
        numid!{$(#[$attr])* $(@$mattr)+ $vis struct $name(u64) -> 0 }
    };
    ($(#[$attr:meta])* $(@$mattr:ident)+ $vis:vis struct $name:ident -> $init_val:expr) => {
        numid!{$(#[$attr])* $(@$mattr)+ $vis struct $name(u64) -> $init_val }
    };
    ($(#[$attr:meta])* $(@$mattr:ident)+ $vis:vis struct $name:ident($ty:ty)) => {
        numid!{$(#[$attr])* $(@$mattr)+ $vis struct $name($ty) -> 0 }
    };
    ($(#[$attr:meta])* $(@$mattr:ident)* $vis:vis struct $name:ident($ty:ty) -> $init_val:expr) => {

        /// A numerical id generated with the `numid!` macro.
        #[warn(non_camel_case_types)]
        #[warn(dead_code)] // rust-lang : issue 66030
        #[derive(Eq, PartialEq, Ord, PartialOrd, Hash, Debug)]
        $(#[$attr])* 
        $vis struct $name($ty);

        impl $name {
            /// Constant defined when calling the `numid!` macro (0 if not defined).
            /// The first id created (with `new()` or `default()`) will have value = `INITIAL_VALUE + 1`.
            pub const INITIAL_VALUE: $ty = $init_val;

            #[doc(hidden)]
            #[inline]
            unsafe fn __get_static_mut() -> &'static mut $ty {
                static mut CURRENT_VALUE: $ty = $name::INITIAL_VALUE;
                &mut CURRENT_VALUE
            }

            /// Increment the "current value" and create a new id with value = `current_value()`.
            #[allow(dead_code)]
            #[inline]
            pub fn new() -> $name {
                $name(unsafe {
                    let v = $name::__get_static_mut();
                    *v += 1;
                    *v
                })
            }

            /// Get the value of the id.
            #[allow(dead_code)]
            #[inline]
            pub const fn value(self) -> $ty {
                self.0
            }

            /// Return the "current value", the value of the last id created (with `new()`,
            /// `default()` or `create_maybe()`),
            /// if no id has been created, the "current value" equal `initial_value()`.
            #[allow(dead_code)]
            #[inline]
            pub fn current_value() -> $ty {
                unsafe {
                    *$name::__get_static_mut()
                }
            }

            /// Return INITIAL_VALUE.
            #[allow(dead_code)]
            #[inline]
            pub const fn initial_value() -> $ty {
                $name::INITIAL_VALUE
            }

            /// Replace the "current value" by the `value` parameter if it superior.
            /// This condition is necessary for not creating multiple ids with the same value.
            /// Return true if the "current value" has been modified.
            #[allow(dead_code)]
            pub fn replace_current_value(value: $ty) -> bool {
                let cond = value > $name::current_value();
                if cond {
                    unsafe {
                        let v = $name::__get_static_mut();
                        *v = value;
                    }
                }
                cond
            }

            /// Return Some id with specified value and replace the "current value" if
            /// `replace_current_value(value)` is `true`.
            /// Return None otherwise.
            #[allow(dead_code)]
            #[inline]
            pub fn create_maybe(value: $ty) -> Option<$name> {
                if $name::replace_current_value(value) {
                    Some($name(value))
                } else {
                    None
                }
            }

            /// Create a id with a precised value, don't increment the "current value".
            /// The value must be inferior or equal as `INITIAL_VALUE` for not
            /// interfering with the id system.
            ///
            /// # Panics
            /// panic if `value > INITIAL_VALUE`
            #[allow(dead_code)]
            #[inline]
            pub fn create_lower(value: $ty) -> $name {
                assert!(value <= $name::initial_value());
                $name(value)
            }

            /// Const version of [`create_lower`](#method.create_lower),
            /// can be used in a const environment. In a non-const environment, give a
            /// `index: out of bounds` panic message, `create_lower` giving a more descriptive
            /// message is therefore preferred.
            ///
            /// # Panics
            /// panic if `value > INITIAL_VALUE`
            #[allow(dead_code)]
            #[inline]
            pub const fn const_create_lower(value: $ty) -> $name {
                $crate::_const_fn_assert::cfn_assert!(value <= $name::initial_value());
                $name(value)
            }

            /// Return a copy of the id if the value is inferior or equal as `initial_value`,
            /// else return a new id and update the `current_value`.
            #[allow(dead_code)]
            #[inline]
            pub fn reproduce(self) -> $name {
                if self.0 > $name::initial_value() {
                    $name::new()
                } else {
                    self
                }
            }
        }

        /// Increment the "current value" and create a new id with value = `current_value()`.
        /// This is equivalent to `new()`.
        impl Default for $name {
            #[inline]
            fn default() -> $name {
                $name::new()
            }
        }

        $crate::__macro_attr_numid!($name $($mattr)*);
        $crate::__fmt_impl_numid!($name : Binary, Octal, LowerHex, UpperHex);
        $crate::__display_numid!($name);
    };
}

#[macro_export]
#[doc(hidden)]
macro_rules! __macro_attr_numid {
    ($name:ident) => {};
    ($name:ident CloneIsClone $($stack:ident)*) => {
        impl Clone for $name {
            #[inline]
            fn clone(&self) -> $name {
                *self
            }
        }

        impl Copy for $name { }

        $crate::__macro_attr_numid!($name $($stack)*);
    };
    ($name:ident CloneIsNew $($stack:ident)*) => {
        impl Clone for $name {
            #[inline]
            fn clone(&self) -> $name {
                $name::new()
            }
        }

        impl Copy for $name { }

        $crate::__macro_attr_numid!($name $($stack)*);
    };
    ($name:ident CloneIsReproduce $($stack:ident)*) => {
        impl Clone for $name {
            #[inline]
            fn clone(&self) -> $name {
                self.reproduce()
            }
        }

        impl Copy for $name { }

        $crate::__macro_attr_numid!($name $($stack)*);
    };
}

#[macro_export]
#[doc(hidden)]
macro_rules! __fmt_impl_numid {
    ($name:ident : $($trait:ident),+) => {
        $(
            impl $crate::_core::fmt::$trait for $name {
                fn fmt(&self, f: &mut $crate::_core::fmt::Formatter<'_>) -> $crate::_core::fmt::Result {
                    $crate::_core::fmt::$trait::fmt(&self.0, f)
                }
            }
        )+
    }
}

#[cfg(feature = "display")]
#[macro_export]
#[doc(hidden)]
macro_rules! __display_numid {
    ($name:ident) => {
        $crate::__fmt_impl_numid!($name: Display);
    };
}

#[cfg(not(feature = "display"))]
#[macro_export]
#[doc(hidden)]
macro_rules! __display_numid {
    ($name:ident) => {};
}

#[cfg(feature = "example")]
pub mod example;

// Always test the example.
#[cfg(all(test, not(feature = "example")))]
mod example;

#[cfg(test)]
mod tests {

    numid!(struct Id);
    numid!(struct IdWithInitVal -> 100);
    numid!(struct UnusedId(u32) -> 10);

    #[test]
    fn tests_id_used() {
        assert_eq!(Id::initial_value(), 0);
        assert_eq!(Id::current_value(), Id::initial_value());

        let id0 = Id::new();

        assert_eq!(Id::current_value(), 1);
        assert_eq!(id0.value(), Id::current_value());

        let id1 = Id::new();
        assert_eq!(Id::current_value(), 2);
        assert_eq!(id1.value(), Id::current_value());
        assert_ne!(id0, id1);
        assert!(id1 > id0);

        let id2 = Id::default();
        assert_eq!(Id::current_value(), 3);
        assert_eq!(id2.value(), Id::current_value());
        assert!(id2 > id1);

        assert!(Id::replace_current_value(10));
        assert_eq!(Id::current_value(), 10);
        assert_eq!(Id::replace_current_value(1), false);
        assert_eq!(Id::current_value(), 10);
        let id3 = Id::new();
        assert_eq!(id3.value(), 11);
    }

    #[test]
    fn tests_id_with_init_val_used() {
        assert_eq!(IdWithInitVal::initial_value(), 100);
        assert_eq!(
            IdWithInitVal::current_value(),
            IdWithInitVal::initial_value()
        );

        let id0 = IdWithInitVal::new();

        assert_eq!(IdWithInitVal::current_value(), 101);
        assert_eq!(id0.value(), IdWithInitVal::current_value());

        let id1 = IdWithInitVal::new();
        assert_eq!(IdWithInitVal::current_value(), 102);
        assert_eq!(id1.value(), IdWithInitVal::current_value());
        assert!(id1 > id0);

        assert!(IdWithInitVal::replace_current_value(150));
        assert_eq!(IdWithInitVal::current_value(), 150);
        assert_eq!(IdWithInitVal::replace_current_value(1), false);
        assert_eq!(IdWithInitVal::current_value(), 150);
        let id2 = IdWithInitVal::new();
        assert_eq!(id2.value(), 151);
    }

    #[test]
    fn tests_create_lower() {
        let id = Id::create_lower(0);
        assert_eq!(id.value(), 0);

        let _ = IdWithInitVal::create_lower(0);
        let _ = IdWithInitVal::create_lower(50);
        let _ = IdWithInitVal::create_lower(100);

        let _ = UnusedId::create_lower(5);
    }

    #[test]
    #[should_panic]
    fn tests_create_lower_fail() {
        let _ = IdWithInitVal::create_lower(101);
    }

    #[test]
    fn test_const_create_lower() {
        const C: Id = Id::const_create_lower(0);
        assert_eq!(C.value(), 0);

        let _ = IdWithInitVal::const_create_lower(0);
        const _C0: IdWithInitVal = IdWithInitVal::const_create_lower(50);
        const _C1: IdWithInitVal = IdWithInitVal::const_create_lower(100);

        const _C2: UnusedId = UnusedId::const_create_lower(5);
    }

    #[test]
    #[should_panic]
    fn tests_const_create_lower_fail() {
        //non-const test
        let _ = IdWithInitVal::const_create_lower(101);
    }

    #[test]
    fn tests_create_maybe() {
        numid!(struct IdMaybe -> 1);

        assert_eq!(IdMaybe::create_maybe(5).unwrap().value(), 5);
        assert_eq!(IdMaybe::current_value(), 5);
        assert_eq!(IdMaybe::create_maybe(3), None);
        assert_eq!(IdMaybe::current_value(), 5);
        assert_eq!(IdMaybe::create_maybe(5), None);
        assert_eq!(IdMaybe::create_maybe(8).unwrap().value(), 8);
    }

    #[test]
    fn tests_reproduce() {
        numid!(struct Id -> 10);

        let id0 = Id::new();
        let id1 = Id::create_lower(5);
        let id2 = Id::create_lower(10);

        let id3 = id0.reproduce();

        assert!(id0 < id3);
        assert_eq!(id1, id1.reproduce());
        assert_eq!(id2, id2.reproduce());
        assert!(id3 < id0.reproduce());
    }

    #[test]
    fn test_debug() {
        numid!(struct IdDebug);

        let id = IdDebug::new();
        assert_eq!(format!("{:?}", id), "IdDebug(1)");

        numid!(struct IdDebugHexa -> 0x1b3d - 1);

        let idh = IdDebugHexa::new();
        assert_eq!(format!("{:x?}", idh), "IdDebugHexa(1b3d)");
        assert_eq!(format!("{:X?}", idh), "IdDebugHexa(1B3D)");
    }

    macro_rules! test_fmt {
        // $literal introduced in rustc 1.32
        ($func:ident, $fmt:tt, $fmt2:tt, $value:expr, $fmt_repr:expr, $repr:expr) => {
            #[test]
            fn $func() {
                numid!(struct Test -> $value - 1);

                let id = Test::new();
                assert_eq!(format!($fmt, id), $repr);
                assert_eq!(format!($fmt2, id), concat!($fmt_repr, $repr));
            }
        };
    }

    test_fmt!(test_binary, "{:b}", "{:#b}", 0b1010, "0b", "1010");
    test_fmt!(test_octal, "{:o}", "{:#o}", 0o7706, "0o", "7706");
    test_fmt!(test_lowerhex, "{:x}", "{:#x}", 0xEFFF, "0x", "efff");
    test_fmt!(test_upperhex, "{:X}", "{:#X}", 0xEFFF, "0x", "EFFF");

    #[cfg(feature = "display")]
    #[test]
    fn test_display() {
        numid!(struct IdDisplay);

        let id = IdDisplay::new();
        assert_eq!(format!("{}", id), "1");
    }

    mod submodule {
        numid!(pub struct PublicId);
        numid!(struct PrivateId);

        #[test]
        fn test_private() {
            let _ = PrivateId::new();
        }
    }

    #[test]
    fn test_public() {
        let _ = submodule::PublicId::new();
    }

    #[test]
    fn test_pub_crate() {
        mod module {
            numid!(pub (crate) struct Test -> 4);
        }

        assert_eq!(module::Test::current_value(), 4);
    }

    #[test]
    fn test_pub_in_module() {
        mod module {
            mod submodule {
                numid!(
                    // `pub (in super)` means only the module `module` will
                    // be able to access this.
                    pub (in super) struct Test -> 7
                );
            }

            mod test {
                // Note: due to `pub (in super)`,
                // this cannot be accessed directly by the testing code.
                pub(super) fn value() -> u64 {
                    super::submodule::Test::current_value()
                }
            }

            pub fn value() -> u64 {
                test::value()
            }
        }

        assert_eq!(module::value(), 7);
    }

    #[test]
    fn test_clone_is_clone() {
        numid!(@CloneIsClone struct Test);
        let t = Test::new();
        assert_eq!(t, t.clone());
        let tt = Test::create_lower(0);
        assert_eq!(tt, tt.clone());
    }

    #[test]
    fn test_clone_is_new() {
        numid!(@CloneIsNew struct Test);
        let t = Test::new();
        assert_ne!(t, t.clone());
        let tt = Test::create_lower(0);
        assert_ne!(tt, tt.clone());
    }

    #[test]
    fn test_clone_is_reproduce() {
        numid!(@CloneIsReproduce struct Test);
        let t = Test::new();
        assert_ne!(t, t.clone());
        let tt = Test::create_lower(0);
        assert_eq!(tt, tt.clone());
    }
}