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
//! Information about CBOR data types and tags.

use core::fmt;

/// CBOR data types.
#[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
pub enum Type {
    Bool,
    Null,
    Undefined,
    U8,
    U16,
    U32,
    U64,
    I8,
    I16,
    I32,
    I64,
    Int,
    F16,
    F32,
    F64,
    Simple,
    Bytes,
    BytesIndef,
    String,
    StringIndef,
    Array,
    ArrayIndef,
    Map,
    MapIndef,
    Tag,
    Break,
    Unknown(u8)
}

impl fmt::Display for Type {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Type::Bool        => f.write_str("bool"),
            Type::Null        => f.write_str("null"),
            Type::Undefined   => f.write_str("undefined"),
            Type::U8          => f.write_str("u8"),
            Type::U16         => f.write_str("u16"),
            Type::U32         => f.write_str("u32"),
            Type::U64         => f.write_str("u64"),
            Type::I8          => f.write_str("i8"),
            Type::I16         => f.write_str("i16"),
            Type::I32         => f.write_str("i32"),
            Type::I64         => f.write_str("i64"),
            Type::Int         => f.write_str("int"),
            Type::F16         => f.write_str("f16"),
            Type::F32         => f.write_str("f32"),
            Type::F64         => f.write_str("f64"),
            Type::Simple      => f.write_str("simple"),
            Type::Bytes       => f.write_str("bytes"),
            Type::BytesIndef  => f.write_str("indefinite bytes"),
            Type::String      => f.write_str("string"),
            Type::StringIndef => f.write_str("indefinite string"),
            Type::Array       => f.write_str("array"),
            Type::ArrayIndef  => f.write_str("indefinite array"),
            Type::Map         => f.write_str("map"),
            Type::MapIndef    => f.write_str("indefinite map"),
            Type::Tag         => f.write_str("tag"),
            Type::Break       => f.write_str("break"),
            Type::Unknown(n)  => write!(f, "{:#x}", n)
        }
    }
}

/// CBOR data item tag.
///
/// See [`IanaTag`] for currently known tag values which have been registered.
#[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
pub struct Tag(u64);

impl Tag {
    pub const fn new(n: u64) -> Self {
        Self(n)
    }

    pub const fn as_u64(self) -> u64 {
        self.0
    }
}

impl From<Tag> for u64 {
    fn from(t: Tag) -> Self {
        t.0
    }
}

impl From<&Tag> for u64 {
    fn from(t: &Tag) -> Self {
        t.0
    }
}

/// IANA registered tags.
///
/// See <https://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml> for details.
#[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
#[non_exhaustive]
pub enum IanaTag {
    DateTime,
    Timestamp,
    PosBignum,
    NegBignum,
    Decimal,
    Bigfloat,
    ToBase64Url,
    ToBase64,
    ToBase16,
    Cbor,
    Uri,
    Base64Url,
    Base64,
    Regex,
    Mime,
    // Typed arrays (RFC 8746):
    HomogenousArray,
    TypedArrayU8,
    TypedArrayU8Clamped,
    TypedArrayU16B,
    TypedArrayU32B,
    TypedArrayU64B,
    TypedArrayU16L,
    TypedArrayU32L,
    TypedArrayU64L,
    TypedArrayI8,
    TypedArrayI16B,
    TypedArrayI32B,
    TypedArrayI64B,
    TypedArrayI16L,
    TypedArrayI32L,
    TypedArrayI64L,
    TypedArrayF16B,
    TypedArrayF32B,
    TypedArrayF64B,
    TypedArrayF128B,
    TypedArrayF16L,
    TypedArrayF32L,
    TypedArrayF64L,
    TypedArrayF128L,
    MultiDimArrayR, // row-major order
    MultiDimArrayC, // column-major order
}

impl IanaTag {
    pub fn tag(self) -> Tag {
        self.into()
    }
}

impl TryFrom<Tag> for IanaTag {
    type Error = UnknownTag;

    fn try_from(t: Tag) -> Result<Self, Self::Error> {
        match t.into() {
            0x00  => Ok(Self::DateTime),
            0x01  => Ok(Self::Timestamp),
            0x02  => Ok(Self::PosBignum),
            0x03  => Ok(Self::NegBignum),
            0x04  => Ok(Self::Decimal),
            0x05  => Ok(Self::Bigfloat),
            0x15  => Ok(Self::ToBase64Url),
            0x16  => Ok(Self::ToBase64),
            0x17  => Ok(Self::ToBase16),
            0x18  => Ok(Self::Cbor),
            0x20  => Ok(Self::Uri),
            0x21  => Ok(Self::Base64Url),
            0x22  => Ok(Self::Base64),
            0x23  => Ok(Self::Regex),
            0x24  => Ok(Self::Mime),
            0x28  => Ok(Self::MultiDimArrayR),
            0x29  => Ok(Self::HomogenousArray),
            0x40  => Ok(Self::TypedArrayU8),
            0x41  => Ok(Self::TypedArrayU16B),
            0x42  => Ok(Self::TypedArrayU32B),
            0x43  => Ok(Self::TypedArrayU64B),
            0x44  => Ok(Self::TypedArrayU8Clamped),
            0x45  => Ok(Self::TypedArrayU16L),
            0x46  => Ok(Self::TypedArrayU32L),
            0x47  => Ok(Self::TypedArrayU64L),
            0x48  => Ok(Self::TypedArrayI8),
            0x49  => Ok(Self::TypedArrayI16B),
            0x4a  => Ok(Self::TypedArrayI32B),
            0x4b  => Ok(Self::TypedArrayI64B),
            0x4d  => Ok(Self::TypedArrayI16L),
            0x4e  => Ok(Self::TypedArrayI32L),
            0x4f  => Ok(Self::TypedArrayI64L),
            0x50  => Ok(Self::TypedArrayF16B),
            0x51  => Ok(Self::TypedArrayF32B),
            0x52  => Ok(Self::TypedArrayF64B),
            0x53  => Ok(Self::TypedArrayF128B),
            0x54  => Ok(Self::TypedArrayF16L),
            0x55  => Ok(Self::TypedArrayF32L),
            0x56  => Ok(Self::TypedArrayF64L),
            0x57  => Ok(Self::TypedArrayF128L),
            0x410 => Ok(Self::MultiDimArrayC),
            _     => Err(UnknownTag(t))
        }
    }
}

impl From<IanaTag> for Tag {
    fn from(t: IanaTag) -> Tag {
        match t {
            IanaTag::DateTime            => Tag::new(0x00),
            IanaTag::Timestamp           => Tag::new(0x01),
            IanaTag::PosBignum           => Tag::new(0x02),
            IanaTag::NegBignum           => Tag::new(0x03),
            IanaTag::Decimal             => Tag::new(0x04),
            IanaTag::Bigfloat            => Tag::new(0x05),
            IanaTag::ToBase64Url         => Tag::new(0x15),
            IanaTag::ToBase64            => Tag::new(0x16),
            IanaTag::ToBase16            => Tag::new(0x17),
            IanaTag::Cbor                => Tag::new(0x18),
            IanaTag::Uri                 => Tag::new(0x20),
            IanaTag::Base64Url           => Tag::new(0x21),
            IanaTag::Base64              => Tag::new(0x22),
            IanaTag::Regex               => Tag::new(0x23),
            IanaTag::Mime                => Tag::new(0x24),
            IanaTag::MultiDimArrayR      => Tag::new(0x28),
            IanaTag::HomogenousArray     => Tag::new(0x29),
            IanaTag::TypedArrayU8        => Tag::new(0x40),
            IanaTag::TypedArrayU16B      => Tag::new(0x41),
            IanaTag::TypedArrayU32B      => Tag::new(0x42),
            IanaTag::TypedArrayU64B      => Tag::new(0x43),
            IanaTag::TypedArrayU8Clamped => Tag::new(0x44),
            IanaTag::TypedArrayU16L      => Tag::new(0x45),
            IanaTag::TypedArrayU32L      => Tag::new(0x46),
            IanaTag::TypedArrayU64L      => Tag::new(0x47),
            IanaTag::TypedArrayI8        => Tag::new(0x48),
            IanaTag::TypedArrayI16B      => Tag::new(0x49),
            IanaTag::TypedArrayI32B      => Tag::new(0x4a),
            IanaTag::TypedArrayI64B      => Tag::new(0x4b),
            IanaTag::TypedArrayI16L      => Tag::new(0x4d),
            IanaTag::TypedArrayI32L      => Tag::new(0x4e),
            IanaTag::TypedArrayI64L      => Tag::new(0x4f),
            IanaTag::TypedArrayF16B      => Tag::new(0x50),
            IanaTag::TypedArrayF32B      => Tag::new(0x51),
            IanaTag::TypedArrayF64B      => Tag::new(0x52),
            IanaTag::TypedArrayF128B     => Tag::new(0x53),
            IanaTag::TypedArrayF16L      => Tag::new(0x54),
            IanaTag::TypedArrayF32L      => Tag::new(0x55),
            IanaTag::TypedArrayF64L      => Tag::new(0x56),
            IanaTag::TypedArrayF128L     => Tag::new(0x57),
            IanaTag::MultiDimArrayC      => Tag::new(0x410)
        }
    }
}

impl From<&IanaTag> for Tag {
    fn from(t: &IanaTag) -> Tag {
        t.into()
    }
}

impl From<IanaTag> for u64 {
    fn from(t: IanaTag) -> Self {
        Tag::from(t).into()
    }
}

impl From<&IanaTag> for u64 {
    fn from(t: &IanaTag) -> Self {
        Tag::from(t).into()
    }
}

/// Error indicating that a tag value is unknown to [`IanaTag`].
#[derive(Debug)]
pub struct UnknownTag(Tag);

impl fmt::Display for UnknownTag {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "unknown tag: {:#x}", self.0.as_u64())
    }
}

#[cfg(feature = "std")]
impl std::error::Error for UnknownTag {}

/// CBOR integer type that covers values of [-2<sup>64</sup>, 2<sup>64</sup> - 1]
///
/// CBOR integers keep the sign bit in the major type so there is one extra bit
/// available for signed numbers compared to Rust's integer types. This type can
/// be used to encode and decode the full CBOR integer range.
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct Int { neg: bool, val: u64 }

/// Max. CBOR integer value (2<sup>64</sup> - 1).
pub const MAX_INT: Int = Int { neg: false, val: u64::MAX };

/// Min. CBOR integer value (-2<sup>64</sup>).
pub const MIN_INT: Int = Int { neg: true, val: u64::MAX };

impl Int {
    pub(crate) fn pos<T: Into<u64>>(val: T) -> Self {
        Int { neg: false, val: val.into() }
    }

    pub(crate) fn neg<T: Into<u64>>(val: T) -> Self {
        Int { neg: true, val: val.into() }
    }

    pub(crate) fn value(&self) -> u64 {
        self.val
    }

    pub(crate) fn is_negative(&self) -> bool {
        self.neg
    }
}

impl fmt::Display for Int {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> core::fmt::Result {
        write!(f, "{}", i128::from(*self))
    }
}

// Introductions:

impl From<u8> for Int {
    fn from(i: u8) -> Self {
        Int::from(u64::from(i))
    }
}

impl From<u16> for Int {
    fn from(i: u16) -> Self {
        Int::from(u64::from(i))
    }
}

impl From<u32> for Int {
    fn from(i: u32) -> Self {
        Int::from(u64::from(i))
    }
}

impl From<u64> for Int {
    fn from(i: u64) -> Self {
        Int::pos(i)
    }
}

impl TryFrom<u128> for Int {
    type Error = TryFromIntError;

    fn try_from(i: u128) -> Result<Self, Self::Error> {
        Ok(Int::from(u64::try_from(i).map_err(|_| TryFromIntError("u64"))?))
    }
}

impl From<i8> for Int {
    fn from(i: i8) -> Self {
        Int::from(i64::from(i))
    }
}

impl From<i16> for Int {
    fn from(i: i16) -> Self {
        Int::from(i64::from(i))
    }
}

impl From<i32> for Int {
    fn from(i: i32) -> Self {
        Int::from(i64::from(i))
    }
}

impl From<i64> for Int {
    fn from(i: i64) -> Self {
        if i.is_negative() {
            Int { neg: true, val: (-1 - i) as u64 }
        } else {
            Int { neg: false, val: i as u64 }
        }
    }
}

impl TryFrom<i128> for Int {
    type Error = TryFromIntError;

    fn try_from(i: i128) -> Result<Self, Self::Error> {
        if i.is_negative() {
            if i < -0x1_0000_0000_0000_0000 {
                Err(TryFromIntError("Int"))
            } else {
                Ok(Int { neg: true, val: (-1 - i) as u64 })
            }
        } else if i > 0xFFFF_FFFF_FFFF_FFFF {
            Err(TryFromIntError("Int"))
        } else {
            Ok(Int { neg: false, val: i as u64 })
        }
    }
}

// Eliminations:

impl TryFrom<Int> for u8 {
    type Error = TryFromIntError;

    fn try_from(i: Int) -> Result<Self, Self::Error> {
        u64::try_from(i).and_then(|n| u8::try_from(n).map_err(|_| TryFromIntError("u8")))
    }
}

impl TryFrom<Int> for u16 {
    type Error = TryFromIntError;

    fn try_from(i: Int) -> Result<Self, Self::Error> {
        u64::try_from(i).and_then(|n| u16::try_from(n).map_err(|_| TryFromIntError("u16")))
    }
}

impl TryFrom<Int> for u32 {
    type Error = TryFromIntError;

    fn try_from(i: Int) -> Result<Self, Self::Error> {
        u64::try_from(i).and_then(|n| u32::try_from(n).map_err(|_| TryFromIntError("u32")))
    }
}

impl TryFrom<Int> for u64 {
    type Error = TryFromIntError;

    fn try_from(i: Int) -> Result<Self, Self::Error> {
        if i.neg {
            return Err(TryFromIntError("u64"))
        }
        Ok(i.val)
    }
}

impl TryFrom<Int> for u128 {
    type Error = TryFromIntError;

    fn try_from(i: Int) -> Result<Self, Self::Error> {
        if i.neg {
            return Err(TryFromIntError("u128"))
        }
        Ok(u128::from(i.val))
    }
}

impl TryFrom<Int> for i8 {
    type Error = TryFromIntError;

    fn try_from(i: Int) -> Result<Self, Self::Error> {
        i64::try_from(i).and_then(|n| i8::try_from(n).map_err(|_| TryFromIntError("i8")))
    }
}

impl TryFrom<Int> for i16 {
    type Error = TryFromIntError;

    fn try_from(i: Int) -> Result<Self, Self::Error> {
        i64::try_from(i).and_then(|n| i16::try_from(n).map_err(|_| TryFromIntError("i16")))
    }
}

impl TryFrom<Int> for i32 {
    type Error = TryFromIntError;

    fn try_from(i: Int) -> Result<Self, Self::Error> {
        i64::try_from(i).and_then(|n| i32::try_from(n).map_err(|_| TryFromIntError("i32")))
    }
}

impl TryFrom<Int> for i64 {
    type Error = TryFromIntError;

    fn try_from(i: Int) -> Result<Self, Self::Error> {
        let j = i64::try_from(i.val).map_err(|_| TryFromIntError("i64"))?;
        Ok(if i.neg { -1 - j } else { j })
    }
}

impl From<Int> for i128 {
    fn from(i: Int) -> Self {
        let j = i128::from(i.val);
        if i.neg { -1 - j } else { j }
    }
}

/// Error when conversion of a CBOR [`Int`] to another type failed.
#[derive(Debug)]
pub struct TryFromIntError(&'static str);

impl fmt::Display for TryFromIntError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "value out of {} range", self.0)
    }
}

#[cfg(feature = "std")]
impl std::error::Error for TryFromIntError {}