-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathblock.rs
More file actions
43 lines (40 loc) · 1.67 KB
/
block.rs
File metadata and controls
43 lines (40 loc) · 1.67 KB
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
//! Block header definitions.
/// There are 4 different kinds of blocks, and the type of block influences the meaning of `Block_Size`.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum BlockType {
/// An uncompressed block.
Raw,
/// A single byte, repeated `Block_Size` times (Run Length Encoding).
#[allow(clippy::upper_case_acronyms)]
RLE,
/// A Zstandard compressed block. `Block_Size` is the length of the compressed data.
Compressed,
/// This is not a valid block, and this value should not be used.
/// If this value is present, it should be considered corrupted data.
Reserved,
}
impl core::fmt::Display for BlockType {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> Result<(), core::fmt::Error> {
match self {
BlockType::Compressed => write!(f, "Compressed"),
BlockType::Raw => write!(f, "Raw"),
BlockType::RLE => write!(f, "RLE"),
BlockType::Reserved => write!(f, "Reserverd"),
}
}
}
/// A representation of a single block header. As well as containing a frame header,
/// each Zstandard frame contains one or more blocks.
pub struct BlockHeader {
/// Whether this block is the last block in the frame.
/// It may be followed by an optional `Content_Checksum` if it is.
pub last_block: bool,
pub block_type: BlockType,
/// The size of the decompressed data. If the block type
/// is [`BlockType::Reserved`] or [`BlockType::Compressed`],
/// this value is set to zero and should not be referenced.
pub decompressed_size: u32,
/// The size of the block. If the block is [`BlockType::RLE`],
/// this value will be 1.
pub content_size: u32,
}