mcproto-types 0.5.0

Minecraft protocol types.
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
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
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
//! Context and protocol values whose wire representation depends on their
//! enclosing packet or data structure.

use crate::{
    ContextualCodec, TypeCodec,
    basic::{Boolean, Identifier},
};
use mcproto_codec::error::{
    CodecError, CodecKind, CodecOperation, ContextRequirement, InvalidEncodingReason,
};
use mcproto_codec::io::{read_exact_counted, write_all_counted};
use mcproto_codec::varint::{VarIntRead, VarIntWrite};

/// External information required to encode or decode a contextual value.
///
/// The context can record whether the current field is present, the length of
/// an array field, and child contexts for array elements. This supports
/// protocol fields described as `Optional X` or `Array of X`, where the
/// required information is known from the enclosing packet or data structure.
///
/// A `Context` does not consume or produce any bytes. The enclosing codec must
/// derive it from already-known protocol state and pass it to
/// [`ContextualCodec`](crate::ContextualCodec).
///
/// # Examples
///
/// ```
/// use mcproto_types::contextual::Context;
///
/// let has_signature = true; // Derived from an earlier packet field.
/// let context = Context::new(has_signature);
/// assert!(context.is_present());
/// assert!(!Context::absent().is_present());
/// ```
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub struct Context {
    presence: Option<bool>,
    array_length: Option<usize>,
    element_contexts: Option<Box<[Context]>>,
}

impl Context {
    /// Context for a field that is present on the wire.
    pub const PRESENT: Self = Self {
        presence: Some(true),
        array_length: None,
        element_contexts: None,
    };

    /// Context for a field that occupies zero bytes on the wire.
    pub const ABSENT: Self = Self {
        presence: Some(false),
        array_length: None,
        element_contexts: None,
    };

    /// Creates a context from a presence condition determined by the enclosing
    /// protocol structure.
    #[must_use]
    pub const fn new(present: bool) -> Self {
        Self {
            presence: Some(present),
            array_length: None,
            element_contexts: None,
        }
    }

    /// Creates context for a field that is present on the wire.
    #[must_use]
    pub const fn present() -> Self {
        Self::PRESENT
    }

    /// Creates context for a field that occupies zero bytes on the wire.
    #[must_use]
    pub const fn absent() -> Self {
        Self::ABSENT
    }

    /// Creates context containing the number of elements in an array field.
    #[must_use]
    pub const fn for_array_length(length: usize) -> Self {
        Self {
            presence: None,
            array_length: Some(length),
            element_contexts: None,
        }
    }

    /// Adds an array length to this context, preserving any presence state.
    #[must_use]
    pub fn with_array_length(self, length: usize) -> Self {
        Self {
            presence: self.presence,
            array_length: Some(length),
            element_contexts: self.element_contexts,
        }
    }

    /// Adds a child context for each array element.
    ///
    /// When child contexts are not supplied, an array passes its own context
    /// to every element. Supplying child contexts is required when different
    /// elements have different contextual metadata or when arrays are nested.
    #[must_use]
    pub fn with_element_contexts(self, contexts: impl IntoIterator<Item = Context>) -> Self {
        Self {
            presence: self.presence,
            array_length: self.array_length,
            element_contexts: Some(contexts.into_iter().collect()),
        }
    }

    /// Returns the explicitly supplied presence state, if one exists.
    #[must_use]
    pub const fn presence(&self) -> Option<bool> {
        self.presence
    }

    /// Returns the contextual array length, if one exists.
    #[must_use]
    pub const fn array_length(&self) -> Option<usize> {
        self.array_length
    }

    fn element_context(
        &self,
        index: usize,
        operation: CodecOperation,
    ) -> Result<&Context, CodecError> {
        match &self.element_contexts {
            Some(contexts) => contexts.get(index).ok_or_else(|| {
                missing_context(
                    CodecKind::Array,
                    operation,
                    ContextRequirement::ElementContext,
                )
            }),
            None => Ok(self),
        }
    }

    /// Returns whether the contextual field is present on the wire.
    #[must_use]
    pub const fn is_present(&self) -> bool {
        matches!(self.presence, Some(true))
    }
}

fn missing_context(
    codec: CodecKind,
    operation: CodecOperation,
    required: ContextRequirement,
) -> CodecError {
    CodecError::invalid_encoding_for_operation(
        codec,
        operation,
        0,
        InvalidEncodingReason::MissingContext { required },
    )
}

/// A sequence of protocol values whose element count is supplied by context.
///
/// `Array<T>` has no wire length prefix. The enclosing packet must supply the
/// number of elements through [`Context::for_array_length`] or
/// [`Context::with_array_length`]. Exactly that many values are encoded or
/// decoded. A zero length therefore produces and consumes zero bytes.
///
/// The total byte size is not necessarily `length * fixed_size`: if `T` has a
/// variable-size encoding, each element may occupy a different number of
/// bytes.
///
/// # Examples
///
/// ```
/// use mcproto_types::{ContextualCodec, TypeCodec, basic::UnsignedByte};
/// use mcproto_types::contextual::{Array, Context};
///
/// let values = Array(vec![UnsignedByte(1), UnsignedByte(2)]);
/// let mut encoded = Vec::new();
/// values.encode_with_context(&mut encoded, &Context::for_array_length(2))?;
/// assert_eq!(encoded, [1, 2]);
///
/// let mut input = encoded.as_slice();
/// assert_eq!(
///     Array::<UnsignedByte>::decode_with_context(
///         &mut input,
///         &Context::for_array_length(2),
///     )?,
///     values,
/// );
/// # Ok::<(), mcproto_codec::error::CodecError>(())
/// ```
#[repr(transparent)]
#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)]
pub struct Array<T>(
    /// The array elements.
    pub Vec<T>,
);

impl<T> Array<T> {
    /// Creates an array from its elements.
    #[must_use]
    pub const fn new(values: Vec<T>) -> Self {
        Self(values)
    }

    /// Returns the number of elements.
    #[must_use]
    pub const fn len(&self) -> usize {
        self.0.len()
    }

    /// Returns whether the array contains no elements.
    #[must_use]
    pub const fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    /// Returns the elements as a slice.
    #[must_use]
    pub const fn as_slice(&self) -> &[T] {
        self.0.as_slice()
    }

    /// Extracts the underlying vector.
    #[must_use]
    pub fn into_vec(self) -> Vec<T> {
        self.0
    }
}

impl<T> From<Vec<T>> for Array<T> {
    fn from(values: Vec<T>) -> Self {
        Self(values)
    }
}

impl<T> From<Array<T>> for Vec<T> {
    fn from(values: Array<T>) -> Self {
        values.0
    }
}

impl<T> ContextualCodec for Array<T>
where
    T: ContextualCodec,
{
    fn encode_with_context(
        &self,
        writer: &mut impl std::io::Write,
        context: &Context,
    ) -> Result<(), CodecError> {
        let expected = context.array_length().ok_or_else(|| {
            missing_context(
                CodecKind::Array,
                CodecOperation::Write,
                ContextRequirement::Length,
            )
        })?;
        if self.len() != expected {
            return Err(CodecError::invalid_encoding_for_operation(
                CodecKind::Array,
                CodecOperation::Write,
                0,
                InvalidEncodingReason::ArrayLengthMismatch {
                    expected,
                    actual: self.len(),
                },
            ));
        }

        for (index, value) in self.0.iter().enumerate() {
            let element_context = context.element_context(index, CodecOperation::Write)?;
            value
                .encode_with_context(writer, element_context)
                .map_err(|error| error.with_context(CodecKind::Array))?;
        }
        Ok(())
    }

    fn decode_with_context(
        reader: &mut impl std::io::Read,
        context: &Context,
    ) -> Result<Self, CodecError> {
        let length = context.array_length().ok_or_else(|| {
            missing_context(
                CodecKind::Array,
                CodecOperation::Read,
                ContextRequirement::Length,
            )
        })?;
        let mut values = Vec::with_capacity(length);
        for index in 0..length {
            let element_context = context.element_context(index, CodecOperation::Read)?;
            values.push(
                T::decode_with_context(reader, element_context)
                    .map_err(|error| error.with_context(CodecKind::Array))?,
            );
        }
        Ok(Self(values))
    }
}

/// A raw sequence of bytes whose length is supplied by context.
///
/// A `ByteArray` has no wire length prefix. Its meaning and number of bytes
/// are determined by the enclosing packet or data structure, which supplies
/// the length through [`Context::for_array_length`] or
/// [`Context::with_array_length`]. It is encoded as exactly that many bytes:
///
/// ```text
/// byte[0] + byte[1] + ... + byte[length - 1]
/// ```
///
/// This differs from [`PrefixedArray`], which stores its own VarInt length,
/// and from [`Array`], which supports arbitrary contextual element codecs.
/// `ByteArray` writes and reads its byte buffer in one operation and does not
/// use array element contexts.
///
/// [Minecraft protocol Byte Array]: https://minecraft.wiki/w/Java_Edition_protocol/Packets#Byte_Array
///
/// # Examples
///
/// ```
/// use mcproto_types::ContextualCodec;
/// use mcproto_types::contextual::{ByteArray, Context};
///
/// let value = ByteArray(vec![0xde, 0xad, 0xbe, 0xef]);
/// let context = Context::for_array_length(4);
/// let mut encoded = Vec::new();
/// value.encode_with_context(&mut encoded, &context)?;
/// assert_eq!(encoded, [0xde, 0xad, 0xbe, 0xef]);
///
/// let mut input = encoded.as_slice();
/// assert_eq!(ByteArray::decode_with_context(&mut input, &context)?, value);
/// assert!(input.is_empty());
/// # Ok::<(), mcproto_codec::error::CodecError>(())
/// ```
#[repr(transparent)]
#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)]
pub struct ByteArray(
    /// The raw bytes.
    pub Vec<u8>,
);

impl ByteArray {
    /// Creates a byte array from raw bytes.
    #[must_use]
    pub const fn new(bytes: Vec<u8>) -> Self {
        Self(bytes)
    }

    /// Returns the number of bytes.
    #[must_use]
    pub const fn len(&self) -> usize {
        self.0.len()
    }

    /// Returns whether this byte array is empty.
    #[must_use]
    pub const fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    /// Returns the bytes as a slice.
    #[must_use]
    pub const fn as_slice(&self) -> &[u8] {
        self.0.as_slice()
    }

    /// Extracts the underlying byte vector.
    #[must_use]
    pub fn into_vec(self) -> Vec<u8> {
        self.0
    }
}

impl From<Vec<u8>> for ByteArray {
    fn from(bytes: Vec<u8>) -> Self {
        Self(bytes)
    }
}

impl From<ByteArray> for Vec<u8> {
    fn from(bytes: ByteArray) -> Self {
        bytes.0
    }
}

impl ContextualCodec for ByteArray {
    fn encode_with_context(
        &self,
        writer: &mut impl std::io::Write,
        context: &Context,
    ) -> Result<(), CodecError> {
        let expected = context.array_length().ok_or_else(|| {
            missing_context(
                CodecKind::ByteArray,
                CodecOperation::Write,
                ContextRequirement::Length,
            )
        })?;
        if self.len() != expected {
            return Err(CodecError::invalid_encoding_for_operation(
                CodecKind::ByteArray,
                CodecOperation::Write,
                0,
                InvalidEncodingReason::ArrayLengthMismatch {
                    expected,
                    actual: self.len(),
                },
            ));
        }

        write_all_counted(writer, &self.0, CodecKind::ByteArray, 0)
    }

    fn decode_with_context(
        reader: &mut impl std::io::Read,
        context: &Context,
    ) -> Result<Self, CodecError> {
        let length = context.array_length().ok_or_else(|| {
            missing_context(
                CodecKind::ByteArray,
                CodecOperation::Read,
                ContextRequirement::Length,
            )
        })?;
        let mut bytes = vec![0; length];
        read_exact_counted(reader, &mut bytes, CodecKind::ByteArray, 0)?;
        Ok(Self(bytes))
    }
}

/// A sequence prefixed by its element count as a VarInt.
///
/// The [Minecraft protocol Prefixed Array] wire representation is a
/// non-negative [`VarInt`] length followed by exactly that many `T` values:
///
/// ```text
/// VarInt(length) + T[0] + T[1] + ... + T[length - 1]
/// ```
///
/// A zero length is encoded as `0x00` and has no element payload. Since the
/// prefix is a signed 32-bit VarInt, arrays cannot contain more than
/// 2,147,483,647 elements. This type supports all context-independent
/// protocol values through `T: TypeCodec`.
///
/// [Minecraft protocol Prefixed Array]: https://minecraft.wiki/w/Java_Edition_protocol/Packets#Prefixed_Array
/// [`VarInt`]: crate::basic::VarInt
///
/// # Examples
///
/// ```
/// use mcproto_types::{TypeCodec, basic::UnsignedByte};
/// use mcproto_types::contextual::PrefixedArray;
///
/// let values = PrefixedArray(vec![UnsignedByte(1), UnsignedByte(2)]);
/// let mut encoded = Vec::new();
/// values.encode(&mut encoded)?;
/// assert_eq!(encoded, [0x02, 0x01, 0x02]);
///
/// let mut input = encoded.as_slice();
/// assert_eq!(PrefixedArray::<UnsignedByte>::decode(&mut input)?, values);
/// assert!(input.is_empty());
/// # Ok::<(), mcproto_codec::error::CodecError>(())
/// ```
#[repr(transparent)]
#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)]
pub struct PrefixedArray<T>(
    /// The array elements.
    pub Vec<T>,
);

impl<T> PrefixedArray<T> {
    /// Creates a length-prefixed array from its elements.
    #[must_use]
    pub const fn new(values: Vec<T>) -> Self {
        Self(values)
    }

    /// Returns the number of elements.
    #[must_use]
    pub const fn len(&self) -> usize {
        self.0.len()
    }

    /// Returns whether the array contains no elements.
    #[must_use]
    pub const fn is_empty(&self) -> bool {
        self.0.is_empty()
    }

    /// Returns the elements as a slice.
    #[must_use]
    pub const fn as_slice(&self) -> &[T] {
        self.0.as_slice()
    }

    /// Extracts the underlying vector.
    #[must_use]
    pub fn into_vec(self) -> Vec<T> {
        self.0
    }
}

impl<T> From<Vec<T>> for PrefixedArray<T> {
    fn from(values: Vec<T>) -> Self {
        Self(values)
    }
}

impl<T> From<PrefixedArray<T>> for Vec<T> {
    fn from(values: PrefixedArray<T>) -> Self {
        values.0
    }
}

impl<T> TypeCodec for PrefixedArray<T>
where
    T: TypeCodec,
{
    fn encode(&self, writer: &mut impl std::io::Write) -> Result<(), CodecError> {
        let length = i32::try_from(self.len()).map_err(|_| {
            CodecError::invalid_encoding_for_operation(
                CodecKind::PrefixedArray,
                CodecOperation::Write,
                0,
                InvalidEncodingReason::LengthOutOfRange {
                    max: i32::MAX as usize,
                    actual: self.len(),
                },
            )
        })?;

        writer
            .write_varint(length)
            .map_err(|error| error.with_context(CodecKind::PrefixedArray))?;
        for value in &self.0 {
            value
                .encode(writer)
                .map_err(|error| error.with_context(CodecKind::PrefixedArray))?;
        }
        Ok(())
    }

    fn decode(reader: &mut impl std::io::Read) -> Result<Self, CodecError> {
        let (length, prefix_size) = reader
            .read_varint_with_size()
            .map_err(|error| error.with_context(CodecKind::PrefixedArray))?;
        if length < 0 {
            return Err(CodecError::invalid_encoding(
                CodecKind::PrefixedArray,
                prefix_size,
                InvalidEncodingReason::NegativeLength { value: length },
            ));
        }

        let mut values = Vec::new();
        for _ in 0..length as usize {
            values.push(
                T::decode(reader).map_err(|error| error.with_context(CodecKind::PrefixedArray))?,
            );
        }
        Ok(Self(values))
    }
}

/// A context-controlled optional value of protocol type `T`.
///
/// `Optional<T>` stores an [`Option<T>`], but it does not encode a presence
/// marker. When the supplied [`Context`] is present, the inner `T` is encoded
/// using its [`ContextualCodec`] implementation. When the context is absent,
/// the value occupies zero bytes.
///
/// The caller must derive the context from the enclosing packet or data
/// structure. This type therefore implements [`ContextualCodec`], not
/// [`TypeCodec`]. A value/context mismatch is reported as an encoding error;
/// it is never silently discarded.
///
/// # Examples
///
/// ```
/// use mcproto_types::{ContextualCodec, TypeCodec, basic::UnsignedByte};
/// use mcproto_types::contextual::{Context, Optional};
///
/// let value = Optional::some(UnsignedByte(0xab));
/// let mut encoded = Vec::new();
/// value.encode_with_context(&mut encoded, &Context::present())?;
/// assert_eq!(encoded, [0xab]);
///
/// let mut input = encoded.as_slice();
/// assert_eq!(
///     Optional::<UnsignedByte>::decode_with_context(&mut input, &Context::present())?,
///     value,
/// );
/// # Ok::<(), mcproto_codec::error::CodecError>(())
/// ```
#[repr(transparent)]
#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)]
pub struct Optional<T>(
    /// The optional value held in memory.
    pub Option<T>,
);

impl<T> Optional<T> {
    /// Creates an optional value that is present.
    #[must_use]
    pub const fn some(value: T) -> Self {
        Self(Some(value))
    }

    /// Creates an optional value that is absent.
    #[must_use]
    pub const fn none() -> Self {
        Self(None)
    }

    /// Returns whether this wrapper contains a value.
    #[must_use]
    pub const fn is_some(&self) -> bool {
        self.0.is_some()
    }

    /// Returns whether this wrapper contains no value.
    #[must_use]
    pub const fn is_none(&self) -> bool {
        self.0.is_none()
    }

    /// Returns the contained value by reference, if present.
    #[must_use]
    pub const fn as_ref(&self) -> Optional<&T> {
        Optional(self.0.as_ref())
    }

    /// Extracts the wrapped [`Option<T>`].
    #[must_use]
    pub fn into_option(self) -> Option<T> {
        self.0
    }
}

impl<T> From<Option<T>> for Optional<T> {
    fn from(value: Option<T>) -> Self {
        Self(value)
    }
}

impl<T> From<Optional<T>> for Option<T> {
    fn from(value: Optional<T>) -> Self {
        value.0
    }
}

impl<T> ContextualCodec for Optional<T>
where
    T: ContextualCodec,
{
    fn encode_with_context(
        &self,
        writer: &mut impl std::io::Write,
        context: &Context,
    ) -> Result<(), CodecError> {
        let context_present = context.presence().ok_or_else(|| {
            missing_context(
                CodecKind::Optional,
                CodecOperation::Write,
                ContextRequirement::Presence,
            )
        })?;
        match (context_present, self.0.as_ref()) {
            (true, Some(value)) => value
                .encode_with_context(writer, context)
                .map_err(|error| error.with_context(CodecKind::Optional)),
            (false, None) => Ok(()),
            (context_present, value) => Err(CodecError::invalid_encoding_for_operation(
                CodecKind::Optional,
                CodecOperation::Write,
                0,
                InvalidEncodingReason::OptionalValueMismatch {
                    context_present,
                    value_present: value.is_some(),
                },
            )),
        }
    }

    fn decode_with_context(
        reader: &mut impl std::io::Read,
        context: &Context,
    ) -> Result<Self, CodecError> {
        match context.presence().ok_or_else(|| {
            missing_context(
                CodecKind::Optional,
                CodecOperation::Read,
                ContextRequirement::Presence,
            )
        })? {
            true => T::decode_with_context(reader, context)
                .map(Self::some)
                .map_err(|error| error.with_context(CodecKind::Optional)),
            false => Ok(Self::none()),
        }
    }
}

/// An optional value prefixed by a boolean presence marker.
///
/// The wire format is a [`Boolean`] followed by `T` when the boolean is true:
///
/// ```text
/// Boolean(is present) + (is present ? T : nothing)
/// ```
///
/// Unlike [`Optional<T>`], this type implements [`TypeCodec`] because its wire
/// representation contains its own presence marker. The marker is `0x01`
/// when the wrapped value is [`Some`](Option::Some), and `0x00` when it is
/// [`None`](Option::None).
///
/// # Examples
///
/// ```
/// use mcproto_types::{TypeCodec, basic::UnsignedByte};
/// use mcproto_types::contextual::PrefixedOptional;
///
/// let value = PrefixedOptional::some(UnsignedByte(0xab));
/// let mut encoded = Vec::new();
/// value.encode(&mut encoded)?;
/// assert_eq!(encoded, [0x01, 0xab]);
///
/// let mut input = encoded.as_slice();
/// assert_eq!(PrefixedOptional::<UnsignedByte>::decode(&mut input)?, value);
/// assert!(input.is_empty());
/// # Ok::<(), mcproto_codec::error::CodecError>(())
/// ```
#[repr(transparent)]
#[derive(Debug, Clone, PartialEq, Eq, Hash, Default)]
pub struct PrefixedOptional<T>(
    /// The optional value and its context-controlled encoding behavior.
    pub Optional<T>,
);

impl<T> PrefixedOptional<T> {
    /// Creates a prefixed optional containing `value`.
    #[must_use]
    pub const fn some(value: T) -> Self {
        Self(Optional::some(value))
    }

    /// Creates a prefixed optional with no value.
    #[must_use]
    pub const fn none() -> Self {
        Self(Optional::none())
    }

    /// Returns whether the prefixed optional contains a value.
    #[must_use]
    pub const fn is_some(&self) -> bool {
        self.0.is_some()
    }

    /// Returns whether the prefixed optional contains no value.
    #[must_use]
    pub const fn is_none(&self) -> bool {
        self.0.is_none()
    }

    /// Returns the contained value by reference, if present.
    #[must_use]
    pub const fn as_ref(&self) -> PrefixedOptional<&T> {
        PrefixedOptional(self.0.as_ref())
    }

    /// Extracts the wrapped [`Option<T>`].
    #[must_use]
    pub fn into_option(self) -> Option<T> {
        self.0.into_option()
    }
}

impl<T> From<Option<T>> for PrefixedOptional<T> {
    fn from(value: Option<T>) -> Self {
        Self(value.into())
    }
}

impl<T> From<Optional<T>> for PrefixedOptional<T> {
    fn from(value: Optional<T>) -> Self {
        Self(value)
    }
}

impl<T> From<PrefixedOptional<T>> for Option<T> {
    fn from(value: PrefixedOptional<T>) -> Self {
        value.into_option()
    }
}

impl<T> TypeCodec for PrefixedOptional<T>
where
    T: TypeCodec,
{
    fn encode(&self, writer: &mut impl std::io::Write) -> Result<(), CodecError> {
        let context = Context::new(self.is_some());
        Boolean(self.is_some())
            .encode(writer)
            .map_err(|error| error.with_context(CodecKind::PrefixedOptional))?;
        self.0
            .encode_with_context(writer, &context)
            .map_err(|error| error.with_context(CodecKind::PrefixedOptional))
    }

    fn decode(reader: &mut impl std::io::Read) -> Result<Self, CodecError> {
        let present = Boolean::decode(reader)
            .map_err(|error| error.with_context(CodecKind::PrefixedOptional))?;
        Optional::decode_with_context(reader, &Context::new(present.0))
            .map(Self)
            .map_err(|error| error.with_context(CodecKind::PrefixedOptional))
    }
}

/// A boolean-selected value of protocol type `X` or `Y`.
///
/// The wire representation begins with a [`Boolean`]. A true marker is
/// followed by an `X` value, while a false marker is followed by a `Y` value:
///
/// ```text
/// 0x01 + X
/// 0x00 + Y
/// ```
///
/// Both branch types must implement [`TypeCodec`]. The enum variant binds the
/// marker to the matching payload, so an in-memory marker/payload mismatch
/// cannot be represented.
///
/// # Examples
///
/// ```
/// use mcproto_types::{Either, TypeCodec, UnsignedByte, VarInt};
///
/// let x = Either::<UnsignedByte, VarInt>::X(UnsignedByte(0xab));
/// let mut encoded = Vec::new();
/// x.encode(&mut encoded)?;
/// assert_eq!(encoded, [0x01, 0xab]);
/// assert_eq!(Either::decode(&mut encoded.as_slice())?, x);
///
/// let y = Either::<UnsignedByte, VarInt>::Y(VarInt(25565));
/// let mut encoded = Vec::new();
/// y.encode(&mut encoded)?;
/// assert_eq!(encoded, [0x00, 0xdd, 0xc7, 0x01]);
/// # Ok::<(), mcproto_codec::error::CodecError>(())
/// ```
///
/// See the official [Either X or Y] protocol documentation.
///
/// [Either X or Y]: https://minecraft.wiki/w/Java_Edition_protocol/Packets#Either
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
pub enum Either<X, Y> {
    /// An `X` payload, prefixed by a true boolean.
    X(X),
    /// A `Y` payload, prefixed by a false boolean.
    Y(Y),
}

impl<X, Y> Either<X, Y> {
    /// Returns whether this value contains an `X` payload.
    #[must_use]
    pub const fn is_x(&self) -> bool {
        matches!(self, Self::X(_))
    }

    /// Returns whether this value contains a `Y` payload.
    #[must_use]
    pub const fn is_y(&self) -> bool {
        matches!(self, Self::Y(_))
    }

    /// Borrows the selected payload while retaining its branch.
    #[must_use]
    pub const fn as_ref(&self) -> Either<&X, &Y> {
        match self {
            Self::X(value) => Either::X(value),
            Self::Y(value) => Either::Y(value),
        }
    }

    /// Extracts the `X` payload, returning `None` for the `Y` branch.
    #[must_use]
    pub fn into_x(self) -> Option<X> {
        match self {
            Self::X(value) => Some(value),
            Self::Y(_) => None,
        }
    }

    /// Extracts the `Y` payload, returning `None` for the `X` branch.
    #[must_use]
    pub fn into_y(self) -> Option<Y> {
        match self {
            Self::X(_) => None,
            Self::Y(value) => Some(value),
        }
    }
}

impl<X, Y> TypeCodec for Either<X, Y>
where
    X: TypeCodec,
    Y: TypeCodec,
{
    fn encode(&self, writer: &mut impl std::io::Write) -> Result<(), CodecError> {
        match self {
            Self::X(value) => {
                Boolean(true)
                    .encode(writer)
                    .map_err(|error| error.with_context(CodecKind::Either))?;
                value
                    .encode(writer)
                    .map_err(|error| error.with_context(CodecKind::Either))
            }
            Self::Y(value) => {
                Boolean(false)
                    .encode(writer)
                    .map_err(|error| error.with_context(CodecKind::Either))?;
                value
                    .encode(writer)
                    .map_err(|error| error.with_context(CodecKind::Either))
            }
        }
    }

    fn decode(reader: &mut impl std::io::Read) -> Result<Self, CodecError> {
        if Boolean::decode(reader)
            .map_err(|error| error.with_context(CodecKind::Either))?
            .0
        {
            X::decode(reader)
                .map(Self::X)
                .map_err(|error| error.with_context(CodecKind::Either))
        } else {
            Y::decode(reader)
                .map(Self::Y)
                .map_err(|error| error.with_context(CodecKind::Either))
        }
    }
}

/// A protocol value represented either by registry ID or by an inline `T`.
///
/// The [Minecraft protocol ID or X] wire representation begins with a
/// [`VarInt`] selector:
///
/// - `0` means that a value of type `T` follows inline;
/// - a positive value `n` refers to registry ID `n - 1` and has no inline
///   payload.
///
/// ```text
/// VarInt(0) + T              // Inline value
/// VarInt(registry_id + 1)    // Registry reference
/// ```
///
/// Registry IDs held by this type are the actual zero-based IDs, not their
/// incremented wire selectors. Valid IDs range from `0` through
/// `i32::MAX - 1`. The registry itself is implied by the enclosing packet or
/// field definition; it does not need to be stored in [`Context`] because it
/// does not affect this value's byte layout.
///
/// [Minecraft protocol ID or X]: https://minecraft.wiki/w/Java_Edition_protocol/Packets#ID_or_X
/// [`VarInt`]: crate::basic::VarInt
///
/// # Examples
///
/// ```
/// use mcproto_types::{TypeCodec, basic::UnsignedByte};
/// use mcproto_types::contextual::IdOr;
///
/// let inline = IdOr::inline(UnsignedByte(0xab));
/// let mut encoded = Vec::new();
/// inline.encode(&mut encoded)?;
/// assert_eq!(encoded, [0x00, 0xab]);
///
/// let mut input = encoded.as_slice();
/// assert_eq!(IdOr::<UnsignedByte>::decode(&mut input)?, inline);
///
/// let reference = IdOr::<UnsignedByte>::id(4);
/// let mut encoded = Vec::new();
/// reference.encode(&mut encoded)?;
/// assert_eq!(encoded, [0x05]);
/// # Ok::<(), mcproto_codec::error::CodecError>(())
/// ```
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum IdOr<T> {
    /// A zero-based ID in the registry implied by the enclosing field.
    Id(i32),
    /// A complete value encoded inline after a zero selector.
    Inline(T),
}

impl<T> IdOr<T> {
    /// Creates a registry reference from its actual zero-based ID.
    #[must_use]
    pub const fn id(id: i32) -> Self {
        Self::Id(id)
    }

    /// Creates an inline value.
    #[must_use]
    pub const fn inline(value: T) -> Self {
        Self::Inline(value)
    }

    /// Returns whether this value is a registry reference.
    #[must_use]
    pub const fn is_id(&self) -> bool {
        matches!(self, Self::Id(_))
    }

    /// Returns whether this value is defined inline.
    #[must_use]
    pub const fn is_inline(&self) -> bool {
        matches!(self, Self::Inline(_))
    }

    /// Returns the zero-based registry ID, if this is a reference.
    #[must_use]
    pub const fn registry_id(&self) -> Option<i32> {
        match self {
            Self::Id(id) => Some(*id),
            Self::Inline(_) => None,
        }
    }

    /// Returns the inline value by reference, if present.
    #[must_use]
    pub const fn inline_value(&self) -> Option<&T> {
        match self {
            Self::Id(_) => None,
            Self::Inline(value) => Some(value),
        }
    }

    /// Borrows the inline value while preserving registry references.
    #[must_use]
    pub const fn as_ref(&self) -> IdOr<&T> {
        match self {
            Self::Id(id) => IdOr::Id(*id),
            Self::Inline(value) => IdOr::Inline(value),
        }
    }

    /// Extracts the inline value, if present.
    #[must_use]
    pub fn into_inline(self) -> Option<T> {
        match self {
            Self::Id(_) => None,
            Self::Inline(value) => Some(value),
        }
    }
}

impl<T> From<T> for IdOr<T> {
    fn from(value: T) -> Self {
        Self::Inline(value)
    }
}

impl<T> TypeCodec for IdOr<T>
where
    T: TypeCodec,
{
    fn encode(&self, writer: &mut impl std::io::Write) -> Result<(), CodecError> {
        match self {
            Self::Id(id) => {
                let selector = id.checked_add(1).filter(|_| *id >= 0).ok_or_else(|| {
                    CodecError::invalid_encoding_for_operation(
                        CodecKind::IdOr,
                        CodecOperation::Write,
                        0,
                        InvalidEncodingReason::InvalidRegistryId {
                            value: *id,
                            max: i32::MAX - 1,
                        },
                    )
                })?;
                writer
                    .write_varint(selector)
                    .map_err(|error| error.with_context(CodecKind::IdOr))
            }
            Self::Inline(value) => {
                writer
                    .write_varint(0)
                    .map_err(|error| error.with_context(CodecKind::IdOr))?;
                value
                    .encode(writer)
                    .map_err(|error| error.with_context(CodecKind::IdOr))
            }
        }
    }

    fn decode(reader: &mut impl std::io::Read) -> Result<Self, CodecError> {
        let (selector, prefix_size) = reader
            .read_varint_with_size()
            .map_err(|error| error.with_context(CodecKind::IdOr))?;
        match selector {
            0 => T::decode(reader)
                .map(Self::Inline)
                .map_err(|error| error.with_context(CodecKind::IdOr)),
            1.. => Ok(Self::Id(selector - 1)),
            _ => Err(CodecError::invalid_encoding(
                CodecKind::IdOr,
                prefix_size,
                InvalidEncodingReason::InvalidIdOrSelector { value: selector },
            )),
        }
    }
}

/// A set of registry IDs represented inline or by reference to a tag.
///
/// The registry itself is implied by the enclosing packet or field. The
/// [Minecraft protocol ID Set] wire representation starts with a [`VarInt`]
/// type value:
///
/// - `0` is followed by an [`Identifier`] naming a registry tag;
/// - a positive value `n` is followed by `n - 1` registry IDs encoded as
///   VarInts.
///
/// ```text
/// VarInt(0) + Identifier(tag_name)
/// VarInt(ids.len() + 1) + VarInt(ids[0]) + ... + VarInt(ids[len - 1])
/// ```
///
/// An empty inline set therefore uses type value `1`. Registry IDs must be
/// non-negative, and an inline set may contain at most `i32::MAX - 1` IDs.
///
/// [Minecraft protocol ID Set]: https://minecraft.wiki/w/Java_Edition_protocol/Packets#ID_Set
/// [`VarInt`]: crate::basic::VarInt
///
/// # Examples
///
/// ```
/// use mcproto_types::{TypeCodec, basic::Identifier};
/// use mcproto_types::contextual::IdSet;
///
/// let inline = IdSet::inline(vec![3, 7]);
/// let mut encoded = Vec::new();
/// inline.encode(&mut encoded)?;
/// assert_eq!(encoded, [0x03, 0x03, 0x07]);
///
/// let mut input = encoded.as_slice();
/// assert_eq!(IdSet::decode(&mut input)?, inline);
///
/// let tagged = IdSet::tag(Identifier::new("minecraft:logs")?);
/// assert!(tagged.is_tag());
/// # Ok::<(), Box<dyn std::error::Error>>(())
/// ```
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum IdSet {
    /// A named set of IDs defined by a registry tag.
    Tag(Identifier),
    /// An ad-hoc set of zero-based registry IDs enumerated inline.
    Inline(Vec<i32>),
}

impl IdSet {
    /// Creates an ID set that refers to a registry tag.
    #[must_use]
    pub const fn tag(tag_name: Identifier) -> Self {
        Self::Tag(tag_name)
    }

    /// Creates an ID set containing inline registry IDs.
    #[must_use]
    pub const fn inline(ids: Vec<i32>) -> Self {
        Self::Inline(ids)
    }

    /// Returns whether this set refers to a registry tag.
    #[must_use]
    pub const fn is_tag(&self) -> bool {
        matches!(self, Self::Tag(_))
    }

    /// Returns whether this set enumerates registry IDs inline.
    #[must_use]
    pub const fn is_inline(&self) -> bool {
        matches!(self, Self::Inline(_))
    }

    /// Returns the registry tag name, if this is a tag reference.
    #[must_use]
    pub const fn tag_name(&self) -> Option<&Identifier> {
        match self {
            Self::Tag(tag_name) => Some(tag_name),
            Self::Inline(_) => None,
        }
    }

    /// Returns the inline registry IDs, if present.
    #[must_use]
    pub const fn ids(&self) -> Option<&[i32]> {
        match self {
            Self::Tag(_) => None,
            Self::Inline(ids) => Some(ids.as_slice()),
        }
    }

    /// Extracts the registry tag name, if this is a tag reference.
    #[must_use]
    pub fn into_tag(self) -> Option<Identifier> {
        match self {
            Self::Tag(tag_name) => Some(tag_name),
            Self::Inline(_) => None,
        }
    }

    /// Extracts the inline registry IDs, if present.
    #[must_use]
    pub fn into_ids(self) -> Option<Vec<i32>> {
        match self {
            Self::Tag(_) => None,
            Self::Inline(ids) => Some(ids),
        }
    }
}

impl From<Identifier> for IdSet {
    fn from(tag_name: Identifier) -> Self {
        Self::Tag(tag_name)
    }
}

impl From<Vec<i32>> for IdSet {
    fn from(ids: Vec<i32>) -> Self {
        Self::Inline(ids)
    }
}

impl TypeCodec for IdSet {
    fn encode(&self, writer: &mut impl std::io::Write) -> Result<(), CodecError> {
        match self {
            Self::Tag(tag_name) => {
                writer
                    .write_varint(0)
                    .map_err(|error| error.with_context(CodecKind::IdSet))?;
                tag_name
                    .encode(writer)
                    .map_err(|error| error.with_context(CodecKind::IdSet))
            }
            Self::Inline(ids) => {
                if let Some(id) = ids.iter().copied().find(|id| *id < 0) {
                    return Err(CodecError::invalid_encoding_for_operation(
                        CodecKind::IdSet,
                        CodecOperation::Write,
                        0,
                        InvalidEncodingReason::InvalidRegistryId {
                            value: id,
                            max: i32::MAX,
                        },
                    ));
                }
                let type_value = i32::try_from(ids.len())
                    .ok()
                    .and_then(|length| length.checked_add(1))
                    .ok_or_else(|| {
                        CodecError::invalid_encoding_for_operation(
                            CodecKind::IdSet,
                            CodecOperation::Write,
                            0,
                            InvalidEncodingReason::LengthOutOfRange {
                                max: (i32::MAX - 1) as usize,
                                actual: ids.len(),
                            },
                        )
                    })?;

                writer
                    .write_varint(type_value)
                    .map_err(|error| error.with_context(CodecKind::IdSet))?;
                for id in ids {
                    writer
                        .write_varint(*id)
                        .map_err(|error| error.with_context(CodecKind::IdSet))?;
                }
                Ok(())
            }
        }
    }

    fn decode(reader: &mut impl std::io::Read) -> Result<Self, CodecError> {
        let (type_value, type_size) = reader
            .read_varint_with_size()
            .map_err(|error| error.with_context(CodecKind::IdSet))?;
        match type_value {
            0 => Identifier::decode(reader)
                .map(Self::Tag)
                .map_err(|error| error.with_context(CodecKind::IdSet)),
            1.. => {
                let length = (type_value - 1) as usize;
                let mut bytes_processed = type_size;
                let mut ids = Vec::new();
                for _ in 0..length {
                    let (id, id_size) = reader
                        .read_varint_with_size()
                        .map_err(|error| error.with_context(CodecKind::IdSet))?;
                    bytes_processed += id_size;
                    if id < 0 {
                        return Err(CodecError::invalid_encoding(
                            CodecKind::IdSet,
                            bytes_processed,
                            InvalidEncodingReason::InvalidRegistryId {
                                value: id,
                                max: i32::MAX,
                            },
                        ));
                    }
                    ids.push(id);
                }
                Ok(Self::Inline(ids))
            }
            _ => Err(CodecError::invalid_encoding(
                CodecKind::IdSet,
                type_size,
                InvalidEncodingReason::InvalidIdSetType { value: type_value },
            )),
        }
    }
}