yyid 0.7.0

Yyid generator (random tokens like UUIDv4, but using all the bits)
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
//! Implementation for the reference types
// A lot is copied from <https://github.com/uuid-rs/uuid/blob/master/src/adapter/mod.rs>

use crate::{
    std::{borrow::Borrow, fmt, ptr, str},
    Yyid,
};

const LOWER: [u8; 16] = [
    b'0', b'1', b'2', b'3', b'4', b'5', b'6', b'7', b'8', b'9', b'a', b'b', b'c', b'd', b'e', b'f',
];

const UPPER: [u8; 16] = [
    b'0', b'1', b'2', b'3', b'4', b'5', b'6', b'7', b'8', b'9', b'A', b'B', b'C', b'D', b'E', b'F',
];

const URN_PREFIX: &[u8; 9] = b"urn:yyid:";

/// Format a [`Yyid`] as a hyphenated string, like
/// `c49b79f5-22d4-dc42-f214-f4209c80d048`.
#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
#[repr(transparent)]
pub struct Hyphenated(Yyid);

/// Format a [`Yyid`] as a simple string, like
/// `c49b79f522d4dc42f214f4209c80d048`.
#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
#[repr(transparent)]
pub struct Simple(Yyid);

/// Format a [`Yyid`] as a URN string, like
/// `urn:yyid:c49b79f5-22d4-dc42-f214-f4209c80d048`.
#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
#[repr(transparent)]
pub struct Urn(Yyid);

/// Format a [`Yyid`] as a braced hyphenated string, like
/// `{c49b79f5-22d4-dc42-f214-f4209c80d048}`.
#[derive(Clone, Copy, Debug, Default, Eq, Hash, Ord, PartialEq, PartialOrd)]
#[repr(transparent)]
pub struct Braced(Yyid);

#[inline]
const fn format_simple(src: &[u8; 16], upper: bool) -> [u8; 32] {
    let lut = if upper { &UPPER } else { &LOWER };
    let mut dst = [0; 32];
    let mut i = 0;
    while i < 16 {
        let x = src[i];
        dst[i * 2] = lut[(x >> 4) as usize];
        dst[i * 2 + 1] = lut[(x & 0x0f) as usize];
        i += 1;
    }
    dst
}

#[inline]
const fn format_hyphenated(src: &[u8; 16], upper: bool) -> [u8; 36] {
    let lut = if upper { &UPPER } else { &LOWER };
    let groups = [(0, 8), (9, 13), (14, 18), (19, 23), (24, 36)];
    let mut dst = [0; 36];

    let mut group_idx = 0;
    let mut i = 0;
    while group_idx < 5 {
        let (start, end) = groups[group_idx];
        let mut j = start;
        while j < end {
            let x = src[i];
            i += 1;

            dst[j] = lut[(x >> 4) as usize];
            dst[j + 1] = lut[(x & 0x0f) as usize];
            j += 2;
        }
        if group_idx < 4 {
            dst[end] = b'-';
        }
        group_idx += 1;
    }
    dst
}

#[inline]
fn encode_simple<'b>(src: &[u8; 16], buffer: &'b mut [u8], upper: bool) -> &'b mut str {
    let buf = &mut buffer[..Simple::LENGTH];
    let dst = buf.as_mut_ptr();

    // SAFETY: `buf` is guaranteed to be at least `LEN` bytes
    // SAFETY: The encoded buffer is ASCII encoded
    unsafe {
        ptr::write(dst.cast(), format_simple(src, upper));
        str::from_utf8_unchecked_mut(buf)
    }
}

#[inline]
fn encode_hyphenated<'b>(src: &[u8; 16], buffer: &'b mut [u8], upper: bool) -> &'b mut str {
    let buf = &mut buffer[..Hyphenated::LENGTH];
    let dst = buf.as_mut_ptr();

    // SAFETY: `buf` is guaranteed to be at least `LEN` bytes
    // SAFETY: The encoded buffer is ASCII encoded
    unsafe {
        ptr::write(dst.cast(), format_hyphenated(src, upper));
        str::from_utf8_unchecked_mut(buf)
    }
}

#[inline]
fn encode_braced<'b>(src: &[u8; 16], buffer: &'b mut [u8], upper: bool) -> &'b mut str {
    let buf = &mut buffer[..Braced::LENGTH];
    buf[0] = b'{';
    buf[Braced::LENGTH - 1] = b'}';

    // SAFETY: `buf` is guaranteed to be at least `LEN` bytes
    // SAFETY: The encoded buffer is ASCII encoded
    unsafe {
        let dst = buf.as_mut_ptr().add(1);

        ptr::write(dst.cast(), format_hyphenated(src, upper));
        str::from_utf8_unchecked_mut(buf)
    }
}

#[inline]
fn encode_urn<'b>(src: &[u8; 16], buffer: &'b mut [u8], upper: bool) -> &'b mut str {
    let buf = &mut buffer[..Urn::LENGTH];
    buf[..9].copy_from_slice(URN_PREFIX);

    // SAFETY: `buf` is guaranteed to be at least `LEN` bytes
    // SAFETY: The encoded buffer is ASCII encoded
    unsafe {
        let dst = buf.as_mut_ptr().add(9);

        ptr::write(dst.cast(), format_hyphenated(src, upper));
        str::from_utf8_unchecked_mut(buf)
    }
}

// === impls ===

impl Yyid {
    /// Get an owned [`Hyphenated`] from a [`Yyid`]
    #[inline]
    pub const fn hyphenated(self) -> Hyphenated {
        Hyphenated(self)
    }

    /// Get a borrowed [`Hyphenated`] from a [`Yyid`]
    #[inline]
    pub const fn as_hyphenated(&self) -> &Hyphenated {
        // SAFETY: `Yyid` and `Hyphenated` have the same ABI
        unsafe { &*(self as *const Yyid as *const Hyphenated) }
    }

    /// Get an owned [`Simple`] from a [`Yyid`]
    #[inline]
    pub const fn simple(self) -> Simple {
        Simple(self)
    }

    /// Get a borrowed [`Simple`] from a [`Yyid`]
    #[inline]
    pub const fn as_simple(&self) -> &Simple {
        // SAFETY: `Yyid` and `Simple` have the same ABI
        unsafe { &*(self as *const Yyid as *const Simple) }
    }

    /// Get an owned [`Urn`] from a [`Yyid`]
    #[inline]
    pub const fn urn(self) -> Urn {
        Urn(self)
    }

    /// Get a borrowed [`Urn`] from a [`Yyid`]
    #[inline]
    pub const fn as_urn(&self) -> &Urn {
        // SAFETY: `Yyid` and `Urn` have the same ABI
        unsafe { &*(self as *const Yyid as *const Urn) }
    }

    /// Get an owned [`Braced`] from a [`Yyid`]
    #[inline]
    pub const fn braced(self) -> Braced {
        Braced(self)
    }

    /// Get a borrowed [`Braced`] from a [`Yyid`]
    #[inline]
    pub const fn as_braced(&self) -> &Braced {
        // SAFETY: `Yyid` and `Braced` have the same ABI
        unsafe { &*(self as *const Yyid as *const Braced) }
    }
}

impl Hyphenated {
    /// Hyphenated string length
    pub const LENGTH: usize = 36;

    /// Wraps a [`Yyid`] into a [`Hyphenated`]
    pub const fn from_yyid(yyid: Yyid) -> Self {
        Self(yyid)
    }

    /// Get a reference to the underlying [`Yyid`].
    pub const fn as_yyid(&self) -> &Yyid {
        &self.0
    }

    /// Consumes the [`Hyphenated`], returning the underlying [`Yyid`].
    pub const fn into_yyid(self) -> Yyid {
        self.0
    }

    /// Writes the [`Yyid`] as a lower-case hyphenated string to
    /// `buffer`, and returns the subslice of the buffer that contains the
    /// encoded YYID.
    #[inline]
    pub fn encode_lower<'buf>(&self, buffer: &'buf mut [u8]) -> &'buf mut str {
        encode_hyphenated(self.0.as_bytes(), buffer, false)
    }

    /// Writes the [`Yyid`] as a upper-case hyphenated string to
    /// `buffer`, and returns the subslice of the buffer that contains the
    /// encoded YYID.
    #[inline]
    pub fn encode_upper<'buf>(&self, buffer: &'buf mut [u8]) -> &'buf mut str {
        encode_hyphenated(self.0.as_bytes(), buffer, true)
    }
}

impl Simple {
    /// Simple string length
    const LENGTH: usize = 32;

    /// Wraps a [`Yyid`] into a [`Simple`]
    pub const fn from_yyid(yyid: Yyid) -> Self {
        Self(yyid)
    }

    /// Get a reference to the underlying [`Yyid`].
    pub const fn as_yyid(&self) -> &Yyid {
        &self.0
    }

    /// Consumes the [`Simple`], returning the underlying [`Yyid`].
    pub const fn into_yyid(self) -> Yyid {
        self.0
    }

    /// Writes the [`Yyid`] as a lower-case simple string to
    /// `buffer`, and returns the subslice of the buffer that contains the
    /// encoded YYID.
    #[inline]
    pub fn encode_lower<'buf>(&self, buffer: &'buf mut [u8]) -> &'buf mut str {
        encode_simple(self.0.as_bytes(), buffer, false)
    }

    /// Writes the [`Yyid`] as a upper-case simple string to
    /// `buffer`, and returns the subslice of the buffer that contains the
    /// encoded YYID.
    #[inline]
    pub fn encode_upper<'buf>(&self, buffer: &'buf mut [u8]) -> &'buf mut str {
        encode_simple(self.0.as_bytes(), buffer, true)
    }
}

impl Urn {
    /// URN string length
    const LENGTH: usize = 45;

    /// Wraps a [`Yyid`] into a [`Urn`]
    pub const fn from_yyid(yyid: Yyid) -> Self {
        Self(yyid)
    }

    /// Get a reference to the underlying [`Yyid`].
    pub const fn as_yyid(&self) -> &Yyid {
        &self.0
    }

    /// Consumes the [`Urn`], returning the underlying [`Yyid`].
    pub const fn into_yyid(self) -> Yyid {
        self.0
    }

    /// Writes the [`Yyid`] as a lower-case URN string to
    /// `buffer`, and returns the subslice of the buffer that contains the
    /// encoded YYID.
    #[inline]
    pub fn encode_lower<'buf>(&self, buffer: &'buf mut [u8]) -> &'buf mut str {
        encode_urn(self.0.as_bytes(), buffer, false)
    }

    /// Writes the [`Yyid`] as a upper-case URN string to
    /// `buffer`, and returns the subslice of the buffer that contains the
    /// encoded YYID.
    #[inline]
    pub fn encode_upper<'buf>(&self, buffer: &'buf mut [u8]) -> &'buf mut str {
        encode_urn(self.0.as_bytes(), buffer, true)
    }
}

impl Braced {
    /// Braced string length
    const LENGTH: usize = 38;

    /// Wraps a [`Yyid`] into a [`Braced`]
    pub const fn from_yyid(yyid: Yyid) -> Self {
        Self(yyid)
    }

    /// Get a reference to the underlying [`Yyid`].
    pub const fn as_yyid(&self) -> &Yyid {
        &self.0
    }

    /// Consumes the [`Braced`], returning the underlying [`Yyid`].
    pub const fn into_yyid(self) -> Yyid {
        self.0
    }

    /// Writes the [`Yyid`] as a lower-case braced string to
    /// `buffer`, and returns the subslice of the buffer that contains the
    /// encoded YYID.
    #[inline]
    pub fn encode_lower<'buf>(&self, buffer: &'buf mut [u8]) -> &'buf mut str {
        encode_braced(self.0.as_bytes(), buffer, false)
    }

    /// Writes the [`Yyid`] as a upper-case braced string to
    /// `buffer`, and returns the subslice of the buffer that contains the
    /// encoded YYID.
    #[inline]
    pub fn encode_upper<'buf>(&self, buffer: &'buf mut [u8]) -> &'buf mut str {
        encode_braced(self.0.as_bytes(), buffer, true)
    }
}

// === Formatters ===

macro_rules! impl_fmt_traits {
    ($($T:ident<$($a:lifetime),*>),+) => {$(
        impl<$($a),*> fmt::Display for $T<$($a),*> {
            #[inline]
            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                fmt::LowerHex::fmt(self, f)
            }
        }

        impl<$($a),*> fmt::LowerHex for $T<$($a),*> {
            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                f.write_str(self.encode_lower(&mut [0; Self::LENGTH]))
            }
        }

        impl<$($a),*> fmt::UpperHex for $T<$($a),*> {
            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                f.write_str(self.encode_upper(&mut [0; Self::LENGTH]))
            }
        }

        impl_fmt_from!($T<$($a),*>);
    )+}
}

macro_rules! impl_fmt_from {
    ($T:ident<>) => {
        impl From<Yyid> for $T {
            #[inline]
            fn from(f: Yyid) -> Self {
                $T(f)
            }
        }

        impl From<$T> for Yyid {
            #[inline]
            fn from(f: $T) -> Self {
                f.into_yyid()
            }
        }

        impl AsRef<Yyid> for $T {
            #[inline]
            fn as_ref(&self) -> &Yyid {
                &self.0
            }
        }

        impl Borrow<Yyid> for $T {
            #[inline]
            fn borrow(&self) -> &Yyid {
                &self.0
            }
        }
    };
    ($T:ident<$a:lifetime>) => {
        impl<$a> From<&$a Yyid> for $T<$a> {
            #[inline]
            fn from(f: &$a Yyid) -> Self {
                $T::from_yyid_ref(f)
            }
        }

        impl<$a> From<$T<$a>> for &$a Yyid {
            #[inline]
            fn from(f: $T<$a>) -> &$a Yyid {
                f.0
            }
        }

        impl<$a> AsRef<Yyid> for $T<$a> {
            #[inline]
            fn as_ref(&self) -> &Yyid {
                self.0
            }
        }

        impl<$a> Borrow<Yyid> for $T<$a> {
            #[inline]
            fn borrow(&self) -> &Yyid {
                self.0
            }
        }
    };
}

impl_fmt_traits! {
    Hyphenated<>,
    Simple<>,
    Urn<>,
    Braced<>
}