-
-
Notifications
You must be signed in to change notification settings - Fork 55
/
lib.rs
479 lines (381 loc) · 13.2 KB
/
lib.rs
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
/*!
# Deku: Declarative binary reading and writing
Deriving a struct or enum with `DekuRead` and `DekuWrite` provides bit-level,
symmetric, serialization/deserialization implementations.
This allows the developer to focus on building and maintaining how the data is
represented and manipulated and not on redundant, error-prone, parsing/writing code.
This approach is especially useful when dealing with binary structures such as
TLVs or network protocols. This allows the internal rustc compiler to choose
the in-memory representation of the struct, while reading and writing can
understand the struct in a "packed" C way.
Under the hood, many specializations are done in order to achieve performant code.
For reading and writing bytes, the std library is used.
When bit-level control is required, it makes use of the [bitvec](https://crates.io/crates/bitvec)
crate as the "Reader" and “Writer”.
For documentation and examples on available `#[deku]` attributes and features,
see [attributes list](attributes)
For more examples, see the
[examples folder](https://github.com/sharksforarms/deku/tree/master/examples)!
## no_std
For use in `no_std` environments, `alloc` is the single feature which is required on deku.
# Example
Let's read big-endian data into a struct, with fields containing different sizes,
modify a value, and write it back. In this example we use [from_bytes](DekuContainerRead::from_bytes),
but we could also use [from_reader](DekuContainerRead::from_reader).
```rust
use deku::prelude::*;
#[derive(Debug, PartialEq, DekuRead, DekuWrite)]
#[deku(endian = "big")]
struct DekuTest {
#[deku(bits = 4)]
field_a: u8,
#[deku(bits = 4)]
field_b: u8,
field_c: u16,
}
let data: Vec<u8> = vec![0b0110_1001, 0xBE, 0xEF];
let (_rest, mut val) = DekuTest::from_bytes((data.as_ref(), 0)).unwrap();
assert_eq!(DekuTest {
field_a: 0b0110,
field_b: 0b1001,
field_c: 0xBEEF,
}, val);
val.field_c = 0xC0FE;
let data_out = val.to_bytes().unwrap();
assert_eq!(vec![0b0110_1001, 0xC0, 0xFE], data_out);
```
# Composing
Deku structs/enums can be composed as long as they implement [DekuReader] / [DekuWrite] traits which
can be derived by using the `DekuRead` and `DekuWrite` Derive macros.
```rust
# use std::io::Cursor;
use deku::prelude::*;
#[derive(Debug, PartialEq, DekuRead, DekuWrite)]
struct DekuTest {
header: DekuHeader,
data: DekuData,
}
#[derive(Debug, PartialEq, DekuRead, DekuWrite)]
struct DekuHeader(u8);
#[derive(Debug, PartialEq, DekuRead, DekuWrite)]
struct DekuData(u16);
let data: Vec<u8> = vec![0xAA, 0xEF, 0xBE];
let (_rest, mut val) = DekuTest::from_bytes((data.as_ref(), 0)).unwrap();
assert_eq!(DekuTest {
header: DekuHeader(0xAA),
data: DekuData(0xBEEF),
}, val);
let data_out = val.to_bytes().unwrap();
assert_eq!(data, data_out);
```
# Vec
Vec<T> can be used in combination with the [count](attributes#count)
attribute (T must implement DekuRead/DekuWrite)
[bytes_read](attributes#bytes_read) or [bits_read](attributes#bits_read)
can also be used instead of `count` to read a specific size of each.
If the length of Vec changes, the original field specified in `count` will not get updated.
Calling `.update()` can be used to "update" the field!
```rust
# use std::io::Cursor;
use deku::prelude::*;
#[derive(Debug, PartialEq, DekuRead, DekuWrite)]
struct DekuTest {
#[deku(update = "self.data.len()")]
count: u8,
#[deku(count = "count")]
data: Vec<u8>,
}
let data: Vec<u8> = vec![0x02, 0xBE, 0xEF, 0xFF, 0xFF];
let (_rest, mut val) = DekuTest::from_bytes((data.as_ref(), 0)).unwrap();
assert_eq!(DekuTest {
count: 0x02,
data: vec![0xBE, 0xEF]
}, val);
let data_out = val.to_bytes().unwrap();
assert_eq!(vec![0x02, 0xBE, 0xEF], data_out);
// Pushing an element to data
val.data.push(0xAA);
assert_eq!(DekuTest {
count: 0x02, // Note: this value has not changed
data: vec![0xBE, 0xEF, 0xAA]
}, val);
let data_out = val.to_bytes().unwrap();
// Note: `count` is still 0x02 while 3 bytes got written
assert_eq!(vec![0x02, 0xBE, 0xEF, 0xAA], data_out);
// Use `update` to update `count`
val.update().unwrap();
assert_eq!(DekuTest {
count: 0x03,
data: vec![0xBE, 0xEF, 0xAA]
}, val);
```
# Enums
As enums can have multiple variants, each variant must have a way to match on
the incoming data.
First the "type" is read using the `type`, then is matched against the
variants given `id`. What happens after is the same as structs!
This is implemented with the [id](/attributes/index.html#id),
[id_pat](/attributes/index.html#id_pat), [default](/attributes/index.html#default) and
[type](attributes#type) attributes. See these for more examples.
If no `id` is specified, the variant will default to it's discriminant value.
If no variant can be matched and the `default` is not provided, a [DekuError::Parse](crate::error::DekuError)
error will be returned.
If no variant can be matched and the `default` is provided, a variant will be returned
based on the field marked with `default`.
Example:
```rust
# use std::io::Cursor;
use deku::prelude::*;
#[derive(Debug, PartialEq, DekuRead, DekuWrite)]
#[deku(type = "u8")]
enum DekuTest {
#[deku(id = 0x01)]
VariantA,
#[deku(id = 0x02)]
VariantB(u16),
}
let data: &[u8] = &[0x01, 0x02, 0xEF, 0xBE];
let mut cursor = Cursor::new(data);
let (_, val) = DekuTest::from_reader((&mut cursor, 0)).unwrap();
assert_eq!(DekuTest::VariantA , val);
// cursor now points at 0x02
let (_, val) = DekuTest::from_reader((&mut cursor, 0)).unwrap();
assert_eq!(DekuTest::VariantB(0xBEEF) , val);
```
# Context
Child parsers can get access to the parent's parsed values using the `ctx` attribute
For more information see [ctx attribute](attributes#ctx)
Example:
```rust
# use std::io::Cursor;
use deku::prelude::*;
#[derive(DekuRead, DekuWrite)]
#[deku(ctx = "a: u8")]
struct Subtype {
#[deku(map = "|b: u8| -> Result<_, DekuError> { Ok(b + a) }")]
b: u8
}
#[derive(DekuRead, DekuWrite)]
struct Root {
a: u8,
#[deku(ctx = "*a")] // `a` is a reference
sub: Subtype
}
let data: &[u8] = &[0x01, 0x02];
let mut cursor = Cursor::new(data);
let (amt_read, value) = Root::from_reader((&mut cursor, 0)).unwrap();
assert_eq!(value.a, 0x01);
assert_eq!(value.sub.b, 0x01 + 0x02)
```
# `Read` enabled
Parsers can be created that directly read from a source implementing [Read](crate::no_std_io::Read).
The crate [no_std_io] is re-exported for use in `no_std` environments.
This functions as an alias for [std::io](https://doc.rust-lang.org/stable/std/io/) when not
using `no_std`.
```rust, no_run
# use std::io::{Seek, SeekFrom, Read};
# use std::fs::File;
# use deku::prelude::*;
#[derive(Debug, DekuRead, DekuWrite, PartialEq, Eq, Clone, Hash)]
#[deku(endian = "big")]
struct EcHdr {
magic: [u8; 4],
version: u8,
padding1: [u8; 3],
}
let mut file = File::options().read(true).open("file").unwrap();
let ec = EcHdr::from_reader((&mut file, 0)).unwrap();
```
# Internal variables and previously read fields
Along similar lines to [Context](#context) variables, previously read variables
are exposed and can be referenced:
Example:
```rust
# use deku::prelude::*;
#[derive(DekuRead)]
struct DekuTest {
num_items: u8,
#[deku(count = "num_items")]
items: Vec<u16>,
}
```
The following variables are internals which can be used in attributes accepting
tokens such as `reader`, `writer`, `map`, `count`, etc.
These are provided as a convenience to the user.
Always included:
- `deku::reader: &mut Reader` - Current [Reader](crate::reader::Reader)
- `deku::output: &mut BitSlice<u8, Msb0>` - The output bit stream
Conditionally included if referenced:
- `deku::bit_offset: usize` - Current bit offset from the input
- `deku::byte_offset: usize` - Current byte offset from the input
Example:
```rust
# use deku::prelude::*;
#[derive(DekuRead)]
#[deku(ctx = "size: u32")]
pub struct EncodedString {
encoding: u8,
#[deku(count = "size as usize - deku::byte_offset")]
data: Vec<u8>
}
```
# Debugging decoders with the `logging` feature.
If you are having trouble understanding what causes a Deku parse error, you may find the `logging`
feature useful.
To use it, you will need to:
- enable the `logging` Cargo feature for your Deku dependency
- import the `log` crate and a compatible logging library
For example, to log with `env_logger`, the dependencies in your `Cargo.toml` might look like:
```text
deku = { version = "*", features = ["logging"] }
log = "*"
env_logger = "*"
```
Then you'd call `env_logger::init()` or `env_logger::try_init()` prior to doing Deku decoding.
Deku uses the `trace` logging level, so if you run your application with `RUST_LOG=trace` in your
environment, you will see logging messages as Deku does its deserialising.
*/
#![warn(missing_docs)]
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::unusual_byte_groupings)]
#[cfg(feature = "alloc")]
extern crate alloc;
#[cfg(feature = "alloc")]
use alloc::vec::Vec;
/// re-export of no_std_io
pub mod no_std_io {
pub use no_std_io::io::Cursor;
pub use no_std_io::io::Read;
pub use no_std_io::io::Result;
}
/// re-export of bitvec
pub mod bitvec {
pub use bitvec::prelude::*;
pub use bitvec::view::BitView;
}
pub use deku_derive::*;
pub mod attributes;
pub mod ctx;
pub mod error;
mod impls;
pub mod prelude;
pub mod reader;
pub use crate::error::DekuError;
/// "Reader" trait: read bytes and bits from [`no_std_io::Read`]er
pub trait DekuReader<'a, Ctx = ()> {
/// Construct type from `reader` implementing [`no_std_io::Read`], with ctx.
///
/// # Example
/// ```rust, no_run
/// # use std::io::{Seek, SeekFrom, Read};
/// # use std::fs::File;
/// # use deku::prelude::*;
/// # use deku::ctx::Endian;
/// #[derive(Debug, DekuRead, DekuWrite, PartialEq, Eq, Clone, Hash)]
/// #[deku(endian = "ctx_endian", ctx = "ctx_endian: Endian")]
/// struct EcHdr {
/// magic: [u8; 4],
/// version: u8,
/// }
///
/// let mut file = File::options().read(true).open("file").unwrap();
/// file.seek(SeekFrom::Start(0)).unwrap();
/// let mut reader = Reader::new(&mut file);
/// let ec = EcHdr::from_reader_with_ctx(&mut reader, Endian::Big).unwrap();
/// ```
fn from_reader_with_ctx<R: no_std_io::Read>(
reader: &mut crate::reader::Reader<R>,
ctx: Ctx,
) -> Result<Self, DekuError>
where
Self: Sized;
}
/// "Reader" trait: implemented on DekuRead struct and enum containers. A `container` is a type which
/// doesn't need any context information.
pub trait DekuContainerRead<'a>: DekuReader<'a, ()> {
/// Construct type from Reader implementing [`no_std_io::Read`].
/// * **input** - Input given as "Reader" and bit offset
///
/// # Returns
/// (amount of total bits read, Self)
///
/// [BufRead]: std::io::BufRead
///
/// # Example
/// ```rust, no_run
/// # use std::io::{Seek, SeekFrom, Read};
/// # use std::fs::File;
/// # use deku::prelude::*;
/// #[derive(Debug, DekuRead, DekuWrite, PartialEq, Eq, Clone, Hash)]
/// #[deku(endian = "big")]
/// struct EcHdr {
/// magic: [u8; 4],
/// version: u8,
/// }
///
/// let mut file = File::options().read(true).open("file").unwrap();
/// file.seek(SeekFrom::Start(0)).unwrap();
/// let ec = EcHdr::from_reader((&mut file, 0)).unwrap();
/// ```
fn from_reader<R: no_std_io::Read>(
input: (&'a mut R, usize),
) -> Result<(usize, Self), DekuError>
where
Self: Sized;
/// Read bytes and construct type
/// * **input** - Input given as data and bit offset
///
/// Returns the remaining bytes and bit offset after parsing in addition to Self.
fn from_bytes(input: (&'a [u8], usize)) -> Result<((&'a [u8], usize), Self), DekuError>
where
Self: Sized;
}
/// "Writer" trait: write from type to bits
pub trait DekuWrite<Ctx = ()> {
/// Write type to bits
/// * **output** - Sink to store resulting bits
/// * **ctx** - A context required by context-sensitive reading. A unit type `()` means no context
/// needed.
fn write(
&self,
output: &mut bitvec::BitVec<u8, bitvec::Msb0>,
ctx: Ctx,
) -> Result<(), DekuError>;
}
/// "Writer" trait: implemented on DekuWrite struct and enum containers. A `container` is a type which
/// doesn't need any context information.
pub trait DekuContainerWrite: DekuWrite<()> {
/// Write struct/enum to Vec<u8>
fn to_bytes(&self) -> Result<Vec<u8>, DekuError>;
/// Write struct/enum to BitVec
fn to_bits(&self) -> Result<bitvec::BitVec<u8, bitvec::Msb0>, DekuError>;
}
/// "Updater" trait: apply mutations to a type
pub trait DekuUpdate {
/// Apply updates
fn update(&mut self) -> Result<(), DekuError>;
}
/// "Extended Enum" trait: obtain additional enum information
pub trait DekuEnumExt<'a, T> {
/// Obtain `id` of a given enum variant
fn deku_id(&self) -> Result<T, DekuError>;
}
/// Implements DekuWrite for references of types that implement DekuWrite
impl<T, Ctx> DekuWrite<Ctx> for &T
where
T: DekuWrite<Ctx>,
Ctx: Copy,
{
/// Write value of type to bits
fn write(
&self,
output: &mut bitvec::BitVec<u8, bitvec::Msb0>,
ctx: Ctx,
) -> Result<(), DekuError> {
<T>::write(self, output, ctx)?;
Ok(())
}
}
#[cfg(test)]
#[path = "../tests/test_common/mod.rs"]
pub mod test_common;