fidl_next_codec/decode/
error.rs1use thiserror::Error;
6
7#[derive(Error, Debug)]
9pub enum DecodeError {
10 #[error("required handle is absent")]
12 RequiredHandleAbsent,
13
14 #[error("required value is absent")]
16 RequiredValueAbsent,
17
18 #[error("`bool` field has an invalid value; expected 0 or 1, found {0}")]
20 InvalidBool(u8),
21
22 #[error("handle has an invalid presence marker; expected 0 or u32::MAX, found {0}")]
24 InvalidHandlePresence(u32),
25
26 #[error("pointer has an invalid presence marker; expected 0 or u64::MAX, found {0}.")]
28 InvalidPointerPresence(u64),
29
30 #[error("invalid envelope size; expected a multiple of 8, found {0}")]
32 InvalidEnvelopeSize(u32),
33
34 #[error("invalid enum ordinal; expected a valid ordinal, found {0}")]
36 InvalidEnumOrdinal(i128),
37
38 #[error("invalid union ordinal; expected a valid ordinal, found {0}")]
40 InvalidUnionOrdinal(usize),
41
42 #[error("invalid bits; expected a subset of {expected:b}, found {actual:b}")]
44 InvalidBits {
45 expected: usize,
47 actual: usize,
49 },
50
51 #[error(
53 "envelope has out-of-line data which is too small; expected more than 4 bytes out-of-line, \
54 found {0} bytes"
55 )]
56 OutOfLineValueTooSmall(u32),
57
58 #[error(
60 "envelope has inline data which is too big; expected 4 bytes or fewer, found {0} bytes"
61 )]
62 InlineValueTooBig(usize),
63
64 #[error("envelope should always be inline, but it contained {0} out-of-line bytes")]
66 ExpectedInline(usize),
67
68 #[error(
70 "envelope consumed a different number of handles than it claimed that it would; expected \
71 {expected} to be consumed, found {actual} were consumed"
72 )]
73 IncorrectNumberOfHandlesConsumed {
74 expected: usize,
76 actual: usize,
78 },
79
80 #[error("optional value is absent but has a non-zero size; expected 0, found {0}")]
82 InvalidOptionalSize(u64),
83
84 #[error(
86 "vector has a length greater than the allowed limit; expected no more than {limit} \
87 elements, found {size} elements"
88 )]
89 VectorTooLong {
90 size: u64,
92 limit: u64,
94 },
95
96 #[error("string has non-UTF8 content; {0}")]
98 InvalidUtf8(#[from] core::str::Utf8Error),
99
100 #[error("union is absent but has a non-zero envelope")]
102 InvalidUnionEnvelope,
103
104 #[error("framework error has an unrecognized error code")]
106 InvalidFrameworkError(i32),
107
108 #[error("reached the end of the buffer before decoding finished")]
110 InsufficientData,
111
112 #[error("consumed all handles before decoding finished")]
114 InsufficientHandles,
115
116 #[error("cannot decode driver handles with this decoder")]
118 DriverHandlesUnsupported,
119
120 #[error("expected next handle to be a driver handle")]
122 ExpectedDriverHandle,
123
124 #[error("expected next handle to be a zircon handle")]
126 ExpectedZirconHandle,
127
128 #[error(
130 "finished decoding before all bytes were consumed; completed with {num_extra} bytes left \
131 over"
132 )]
133 ExtraBytes {
134 num_extra: usize,
136 },
137
138 #[error(
140 "finished decoding before all handles were consumed; completed with {num_extra} handles \
141 left over"
142 )]
143 ExtraHandles {
144 num_extra: usize,
146 },
147}