index_vec 0.0.1-alpha

Like `Vec` and `usize`, but with more type safety
Documentation
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


/// Generate the boilerplate for a newtyped index struct, for use with
/// `IndexVec`.
///
/// ## Usage
///
/// ### Standard
///
/// The rough usage pattern of this macro is:
///
/// ```rust,no_run
/// index_vec::define_index_type! {
///     // any #[attributes] can go here.
///     pub struct MyIndex(u32);
///     // optional extra configuration here of the form:
///     // `OPTION_NAME = stuff;`
///     // See below for details.
/// }
/// ```
///
/// Note that you can use other index types than `u32`, and you can set it to be
/// `MyIndex(pub u32)` as well. Currently, the wrapped item be a tuple struct,
/// however (patches welcome).
///
/// ### Customization
///
/// After the struct declaration, there are a number of configuration options
/// the macro uses to customize how the type it generates behaves. For example:
///
/// ```rust,no_run
/// index_vec::define_index_type! {
///     #[repr(transparent)]
///     pub struct Span(u32);
///
///     // Don't allow any spans with values higher this.
///     MAX_INDEX = 0x7fff_ff00;
///
///     // But I also am not too worried about it, so only
///     // perform the asserts in debug builds.
///     DISABLE_MAX_INDEX_CHECK_IF = !cfg!(debug_assertions);
/// }
/// ```
///
/// ## Configuration options
///
/// This macro has a few ways you can customize it's output behavior. There's
/// not really any great syntax I can think of for them, but, well.
///
/// #### `MAX_INDEX = <expr producing usize>`
///
/// Assert if anything tries to construct an index above that value.
///
/// By default, this is `$raw_type::max_value() as usize`, e.g. we check that
/// our cast from `usize` to our wrapper is lossless, but we assume any all
/// instance of `$raw_type` is valid in this index domain.
///
/// Note that these tests can be disabled entirely, or conditionally, with
/// `DISABLE_MAX_INDEX_CHECK_IF`. Additionally, the generated type has
/// `from_usize_unchecked` and `from_raw_unchecked` functions which can be used
/// to ignore these checks.
///
/// #### `DISABLE_MAX_INDEX_CHECK_IF = <expr>;`
///
/// Set to true to disable the assertions mentioned above. False by default.
///
/// To be clear, if this is set to false, we blindly assume all casts between
/// `usize` and `$raw_type` succeed.
///
/// A common use is setting `DISABLE_MAX_INDEX_CHECK_IF = !cfg!(debug_assertions)` to
/// avoid the tests at compile time
///
/// For the sake of clarity, disabling this cannot lead to memory unsafety -- we
/// still go through bounds checks when accessing slices, and no unsafe code
/// (unless you write some, and don't! only use this for correctness!) should
/// rely on on these checks.
///
/// #### `DEFAULT = <expr>;`
/// If provided, we'll implement `Default` for the index type using this
/// expresson.
///
/// Example:
///
/// ```rust,no_run
/// index_vec::define_index_type! {
///     pub struct MyIdx(u16);
///     MAX_INDEX = (u16::max_value() - 1) as usize;
///     // Set the default index to be an invalid index, as
///     // a hacky way of having this type behave somewhat
///     // like it were an Option<MyIdx> without consuming
///     // extra space.
///     DEFAULT = (MyIdx::from_raw_unchecked(u16::max_value()));
/// }
/// ```
///
/// #### `NO_DERIVES = true;`
///
/// By default the generated type will `derive` all traits needed to make itself
/// work. Specifically, `Copy, Clone, Debug, PartialEq, Eq, Hash, PartialOrd,
/// Ord`. If you'd like to provide your own implementation of one of these, this
/// is a problem.
///
/// It can be worked around by setting NO_DERIVES, and providing the
/// implementations yourself, usually with a combination of implementing it
/// manually and using Derives, for example, if I want to use a custom `Debug`
/// impl:
///
/// ```rust,no_run
/// index_vec::define_index_type! {
///     // Derive everything needs except `Debug`.
///     #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord)]
///     struct MyIdx(usize);
///     NO_DERIVES = true;
/// }
/// // and then implement Debug manually.
/// impl core::fmt::Debug for MyIdx {
///    fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
///        write!(f, "{}", self.raw())
///    }
/// }
/// ```
#[macro_export(local_inner_macros)]
macro_rules! define_index_type {
    // public api
    (
        $(#[$attrs:meta])*
        $v:vis struct $type:ident ($inner_v:vis $raw:ident);
        $($config:tt)*
    ) => {
        define_index_type!{
            @__inner
            @attrs [$(#[$attrs])*]
            @derives [#[derive(Copy, Clone, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]]
            @decl [$v struct $type ($inner_v $raw)]
            @max [(<$raw>::max_value() as usize)]
            @no_check_max [false]
            { $($config)* }
        }
    };

    // DISABLE_MAX_INDEX_CHECK_IF
    (@__inner
        @attrs [$(#[$attrs:meta])*]
        @derives [$(#[$derive:meta])*]
        @decl [$v:vis struct $type:ident ($inner_v:vis $raw:ident)]
        @max [$max:expr]
        @no_check_max [$_old_no_check_max:expr]
        { DISABLE_MAX_INDEX_CHECK_IF = $no_check_max:expr; $($tok:tt)* }
    ) => {
        define_index_type!{
            @__inner
            @attrs [$(#[$attrs])*]
            @derives [$(#[$derive])*]
            @decl [$v struct $type ($inner_v $raw)]
            @max [$max]
            @no_check_max [$no_check_max]
            { $($tok)* }
        }
    };

    // MAX_INDEX
    (@__inner
        @attrs [$(#[$attrs:meta])*]
        @derives [$(#[$derive:meta])*]
        @decl [$v:vis struct $type:ident ($inner_v:vis $raw:ident)]
        @max [$max:expr]
        @no_check_max [$cm:expr]
        { MAX_INDEX = $new_max:expr; $($tok:tt)* }
    ) => {
        define_index_type!{
            @__inner
            @attrs [$(#[$attrs])*]
            @derives [$(#[$derive])*]
            @decl [$v struct $type ($inner_v $raw)]
            @max [$new_max]
            @no_check_max [$cm]
            { $($tok)* }
        }
    };

    // DEFAULT
    (@__inner
        @attrs [$(#[$attrs:meta])*]
        @derives [$(#[$derive:meta])*]
        @decl [$v:vis struct $type:ident ($inner_v:vis $raw:ident)]
        @max [$max:expr]
        @no_check_max [$no_check_max:expr]
        { DEFAULT = $default_expr:expr; $($tok:tt)* }
    ) => {
        define_index_type!{
            @__inner
            @attrs [$(#[$attrs])*]
            @derives [$(#[$derive])*]
            @decl [$v struct $type ($inner_v $raw)]
            @max [$max]
            @no_check_max [$no_check_max]
            { $($tok)* }
        }
        impl Default for $type {
            #[inline]
            fn default() -> Self {
                $default_expr
            }
        }
    };

    // NO_DERIVES
    (@__inner
        @attrs [$(#[$attrs:meta])*]
        @derives [$(#[$derive:meta])*]
        @decl [$v:vis struct $type:ident ($inner_v:vis $raw:ident)]
        @max [$max:expr]
        @no_check_max [$no_check_max:expr]
        { NO_DERIVES = true; $($tok:tt)* }
    ) => {
        define_index_type!{
            @__inner
            @attrs [$(#[$attrs])*]
            @derives []
            @decl [$v struct $type ($inner_v $raw)]
            @max [$max]
            @no_check_max [$no_check_max]
            { $($tok)* }
        }
    };

    // finish
    (@__inner
        @attrs [$(#[$attrs:meta])*]
        @derives [$(#[$derive:meta])*]
        @decl [$v:vis struct $type:ident ($inner_v:vis $raw:ident)]
        @max [$max:expr]
        @no_check_max [$no_check_max:expr]
        { }
    ) => {

        $(#[$derive])*
        $(#[$attrs])*
        $v struct $type($inner_v $raw);

        impl $type {
            /// If `Self::CHECKS_MAX_INDEX` is true, we'll assert if trying to
            /// produce a value larger than this in any of the ctors that don't
            /// have `unchecked` in their name.
            $v const MAX_INDEX: usize = $max;

            /// Does this index type assert if asked to construct an index
            /// larger than MAX_INDEX?
            $v const CHECKS_MAX_INDEX: bool = !$no_check_max;

            /// Construct this index type from a usize. Alias for `from_usize`.
            ///
            /// Panics if:
            /// - this index type is configured to panic
            /// - `value > Self::MAX_INDEX`
            #[inline]
            $v fn new(value: usize) -> Self {
                Self::from_usize(value)
            }


            /// Construct this index type from the wrapped integer tyep.
            ///
            /// Panics if:
            /// - this index type is configured to panic.
            /// - `(value as usize) > Self::MAX_INDEX`
            #[inline]
            $v fn from_raw(value: $raw) -> Self {
                Self::from_usize(value as usize)
            }

            /// Construct from a usize without any checks.
            #[inline]
            $v const fn from_usize_unchecked(value: usize) -> Self {
                Self(value as $raw)
            }

            /// Construct from the underlying type without any checks.
            #[inline]
            $v const fn from_raw_unchecked(raw: $raw) -> Self {
                Self(raw)
            }

            /// Construct this index type from a usize.
            ///
            /// Panics if:
            /// - this index type is configured to panic
            /// - `value > Self::MAX_INDEX`
            #[inline]
            $v fn from_usize(value: usize) -> Self {
                Self::maybe_check_index(value as usize);
                Self(value as $raw)
            }

            /// Get the wrapped index as a usize.
            #[inline]
            $v fn index(self) -> usize {
                self.as_usize()
            }

            /// Get the wrapped index.
            #[inline]
            $v fn raw(self) -> $raw {
                self.0
            }

            /// Asserts `v <= Self::MAX_INDEX` unless Self::CHECKS_MAX_INDEX is false.
            #[inline]
            $v fn maybe_check_index(v: usize) {
                if Self::CHECKS_MAX_INDEX && (v > Self::MAX_INDEX) {
                    Self::max_check_fail(v);
                }
            }


            #[inline]
            $v fn as_usize(self) -> usize {
                self.0 as usize
            }

            #[inline(never)]
            #[cold]
            fn max_check_fail(u: usize) {
                core::panic!(
                    "index_vec index overfow: {} is outside the range [0, {})",
                    u,
                    Self::MAX_INDEX,
                );
            }

            const _ENSURE_RAW_IS_UNSIGNED: [(); 0] = [(); <$raw>::min_value() as usize];
        }

        impl core::cmp::PartialOrd<usize> for $type {
            #[inline]
            fn partial_cmp(&self, other: &usize) -> Option<core::cmp::Ordering> {
                self.index().partial_cmp(other)
            }
        }

        impl core::cmp::PartialOrd<$type> for usize {
            #[inline]
            fn partial_cmp(&self, other: &$type) -> Option<core::cmp::Ordering> {
                self.partial_cmp(&other.index())
            }
        }

        impl PartialEq<usize> for $type {
            #[inline]
            fn eq(&self, other: &usize) -> bool {
                self.index() == *other
            }
        }

        impl PartialEq<$type> for usize {
            #[inline]
            fn eq(&self, other: &$type) -> bool {
                *self == other.index()
            }
        }

        impl core::ops::Add<usize> for $type {
            type Output = Self;
            #[inline]
            fn add(self, other: usize) -> Self {
                Self::new(self.index() + other)
            }
        }

        impl core::ops::AddAssign<usize> for $type {
            #[inline]
            fn add_assign(&mut self, other: usize) {
                *self = *self + other
            }
        }

        impl core::ops::Sub<usize> for $type {
            type Output = Self;
            #[inline]
            fn sub(self, other: usize) -> Self {
                Self::new(self.index() - other)
            }
        }

        impl core::ops::SubAssign<usize> for $type {
            #[inline]
            fn sub_assign(&mut self, other: usize) {
                *self = *self - other;
            }
        }

        impl core::ops::Rem<usize> for $type {
            type Output = Self;
            #[inline]
            fn rem(self, other: usize) -> Self {
                Self::new(self.index() % other)
            }
        }

        impl core::ops::Add<$type> for usize {
            type Output = $type;
            #[inline]
            fn add(self, other: $type) -> $type {
                $type::new(self + other.index())
            }
        }

        impl core::ops::Sub<$type> for usize {
            type Output = $type;
            #[inline]
            fn sub(self, other: $type) -> $type {
                $type::new(self - other.index())
            }
        }

        impl $crate::Idx for $type {
            #[inline]
            fn from_usize(value: usize) -> Self {
                Self::from(value)
            }

            #[inline]
            fn index(self) -> usize {
                usize::from(self)
            }
        }

        impl From<$type> for usize {
            #[inline]
            fn from(v: $type) -> usize {
                v.as_usize()
            }
        }

        impl From<usize> for $type {
            #[inline]
            fn from(value: usize) -> Self {
                $type::from_usize(value)
            }
        }

        define_index_type! { @__impl_from_rep_unless_usize $type, $raw }
    };
    (@__impl_from_rep_unless_usize $type:ident, usize) => {};
    (@__impl_from_rep_unless_usize $type:ident, $raw:ident) => {
        impl From<$type> for $raw {
            #[inline]
            fn from(v: $type) -> $raw {
                v.raw()
            }
        }

        impl From<$raw> for $type {
            #[inline]
            fn from(value: $raw) -> Self {
                Self::from_raw(value)
            }
        }
    };
}

/// A macro equivalent to the stdlib's `vec![]`, but producing an `IndexVec`.
#[macro_export]
macro_rules! index_vec {
    ($($tokens:tt)*) => {
        $crate::IndexVec::from_vec(vec![$($tokens)*])
    }
}