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
/*******************************************************************************
*
* Copyright (c) 2026 Haixing Hu.
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0.
*
******************************************************************************/
//! Policy hooks used by buffered decoder engines.
use ;
use crate::;
/// Policy hooks for [`crate::BufferedDecodeEngine`].
///
/// Hooks own policy state, such as malformed-input replacement behavior. The
/// engine passes the codec into hook methods when policy code needs codec
/// metadata.
///
/// Implement this trait when a buffered decoder needs policy decisions after
/// the low-level codec reports an error. The engine handles input/output cursor
/// bookkeeping, output-capacity checks, and successful one-value decodes; hooks
/// decide whether a decode error means "need more input", "skip these units",
/// "emit a replacement value", or "return an error".
///
/// The hook receives a [`DecodeContext`] with absolute input/output cursors, so
/// errors can include useful positions without duplicating engine arithmetic.
/// Stateful hooks may also use [`finish`](Self::finish) to emit final values
/// after the caller has supplied all input and handled any incomplete tail.
///
/// # Example
///
/// This hook maps incomplete codec errors to `NeedInput`, replaces malformed
/// units with `b'?'`, and otherwise lets the engine keep decoding.
///
/// ```rust
/// use core::num::NonZeroUsize;
/// use qubit_codec::{
/// BufferedDecodeHooks,
/// Codec,
/// CodecDecodeError,
/// DecodeAction,
/// DecodeContext,
/// };
///
/// #[derive(Clone, Copy)]
/// struct MyCodec;
///
/// #[derive(Clone, Copy, Debug, Eq, PartialEq)]
/// enum MyDecodeError {
/// Incomplete { required_total: usize },
/// Malformed { consumed: NonZeroUsize },
/// }
///
/// unsafe impl Codec for MyCodec {
/// type Value = u8;
/// type Unit = u8;
/// type DecodeError = MyDecodeError;
/// type EncodeError = core::convert::Infallible;
///
/// fn min_units_per_value(&self) -> NonZeroUsize {
/// NonZeroUsize::MIN
/// }
///
/// fn max_units_per_value(&self) -> NonZeroUsize {
/// NonZeroUsize::MIN
/// }
///
/// unsafe fn decode_unchecked(
/// &self,
/// input: &[u8],
/// index: usize,
/// ) -> Result<(u8, NonZeroUsize), Self::DecodeError> {
/// match input[index] {
/// 0xff => Err(MyDecodeError::Malformed {
/// consumed: NonZeroUsize::MIN,
/// }),
/// value => Ok((value, NonZeroUsize::MIN)),
/// }
/// }
///
/// unsafe fn encode_unchecked(
/// &self,
/// value: &u8,
/// output: &mut [u8],
/// index: usize,
/// ) -> Result<usize, Self::EncodeError> {
/// output[index] = *value;
/// Ok(1)
/// }
/// }
///
/// struct ReplacementHooks;
///
/// impl BufferedDecodeHooks<MyCodec> for ReplacementHooks {
/// type Error = CodecDecodeError<MyDecodeError>;
///
/// fn handle_decode_error(
/// &mut self,
/// _codec: &MyCodec,
/// error: MyDecodeError,
/// _context: DecodeContext,
/// ) -> Result<DecodeAction<u8>, Self::Error> {
/// match error {
/// MyDecodeError::Incomplete { required_total } => {
/// Ok(DecodeAction::NeedInput { required_total })
/// }
/// MyDecodeError::Malformed { consumed } => {
/// Ok(DecodeAction::Emit { value: b'?', consumed })
/// }
/// }
/// }
///
/// fn invalid_input_index(
/// &mut self,
/// _codec: &MyCodec,
/// index: usize,
/// input_len: usize,
/// ) -> Self::Error {
/// CodecDecodeError::invalid_input_index(index, input_len)
/// }
///
/// fn invalid_output_index(
/// &mut self,
/// _codec: &MyCodec,
/// index: usize,
/// output_len: usize,
/// ) -> Self::Error {
/// CodecDecodeError::invalid_output_index(index, output_len)
/// }
/// }
/// ```
///
/// # Type Parameters
///
/// - `C`: Low-level codec owned by the engine.